homebrew-core/Formula/afflib.rb
Mark A. Matienzo 3b68a9d269 New formula: afflib
AFFLIB is an open source implementation of the Advanced Forensic Format written in C.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-20 15:14:28 -07:00

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