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