aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/afflib.rb
blob: 0feaf7f39675165ce6c071a845b87d40fdeb95e6 (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.0.tar.gz'
  homepage 'http://afflib.org'
  md5 '36a6b5e0cebd70e26bae4bc218dbbace'

  depends_on 'expat' => :optional

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end