blob: 5e0305c63c122c4b2fd424f8fd5a1e1c01e39925 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Afflib < Formula
homepage 'http://afflib.org'
url 'https://github.com/downloads/simsong/AFFLIBv3/afflib-3.7.1.tar.gz'
sha1 'fb35a2383a48b49f68e25ca97d67ee02342826ba'
depends_on 'expat' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|