blob: 4b2516eb976853a366cf38b117b10714f5cd879e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|