blob: 3c21932457da0cbd5df2cb2ac420091df4f47ee5 (
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-20140427.tar.gz'
sha1 '86af91b3357d0cb78cfbe0c2356ccb3e1c8236e9'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|