3b68a9d269
AFFLIB is an open source implementation of the Advanced Forensic Format written in C. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
367 B
Ruby
15 lines
367 B
Ruby
require 'formula'
|
|
|
|
class Afflib <Formula
|
|
url 'http://afflib.org/downloads/afflib-3.6.2.tar.gz'
|
|
homepage 'http://afflib.org'
|
|
md5 'c30468c762c8e06776410ca8fb56b782'
|
|
|
|
depends_on 'expat'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|