homebrew-core/Formula/afflib.rb

20 lines
515 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Afflib < Formula
2013-11-05 04:02:44 +00:00
homepage 'https://github.com/simsong/AFFLIBv3'
url 'https://github.com/simsong/AFFLIBv3/archive/v3.7.3.tar.gz'
sha1 '530c09f0852d6fb673762b3beafa2097ae4694fa'
2013-11-05 04:02:44 +00:00
depends_on :autoconf
depends_on :automake
depends_on :libtool
depends_on 'expat' => :optional
def install
2013-11-05 04:02:44 +00:00
system "sh bootstrap.sh"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end