homebrew-core/Formula/afflib.rb
Mark A. Matienzo acd3738771 Update formula: afflib
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-11 21:09:45 -07:00

15 lines
381 B
Ruby

require 'formula'
class Afflib < Formula
url 'http://afflib.org/downloads/afflib-3.6.9.tar.gz'
homepage 'http://afflib.org'
md5 'c946359e5f410a76bc4aa0ea2eabd5a1'
depends_on 'expat' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end