homebrew-core/Formula/libewf.rb
Marshall Levin a9ef94afe6 libewf - fix download link
Closes Homebrew/homebrew#20913.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-07-01 11:59:07 -07:00

14 lines
372 B
Ruby

require 'formula'
class Libewf < Formula
homepage 'http://code.google.com/p/libewf/'
url 'https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20130416.tar.gz'
sha1 'b455412299fd15e7a4f1be670d886f99350bdae4'
# env :std
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end