aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libewf.rb
blob: eaa3417d0dad478ec4c90201dd28836af435532a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Libewf < Formula
  homepage 'http://code.google.com/p/libewf/'
  url 'https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20131210.tar.gz'
  sha1 '0b133f39c1f69fe0044a41a502704336e2f54c78'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end