blob: e0e7f6a112f1ae053fcc80dc49591278e98107df (
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.8.tar.gz'
homepage 'http://afflib.org'
md5 'c170ea4e3bcd3c0e286b4d5d904bc367'
depends_on 'expat' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|