aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/afflib.rb
blob: 02c5a5b579e1a1e7dc20249cb1638923dfc50d55 (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'
  sha1 'fb35a2383a48b49f68e25ca97d67ee02342826ba'

  depends_on 'expat' => :optional

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