9ae0a54685
Libewf is a library for support of the Expert Witness Compression Format (EWF), it support both the SMART format (EWF-S01) and the EnCase format (EWF-E01). Libewf allows you to read and write media information within the EWF files. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
441 B
Ruby
14 lines
441 B
Ruby
require 'formula'
|
|
|
|
class Libewf <Formula
|
|
url 'http://downloads.sourceforge.net/project/libewf/libewf/libewf-20100226/libewf-20100226.tar.gz'
|
|
homepage 'http://sourceforge.net/projects/libewf/'
|
|
md5 'a697d629bb74df1fa68f22658634fdb9'
|
|
|
|
def install
|
|
ENV['LIBTOOLIZE'] = "/usr/bin/glibtoolize"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|