homebrew-core/Formula/afflib.rb

16 lines
399 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Afflib < Formula
url 'https://github.com/downloads/simsong/AFFLIBv3/afflib-3.7.1.tar.gz'
homepage 'http://afflib.org'
md5 'c6751d461aaf6acf9d15303cde539e44'
depends_on 'expat' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end