aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bali-phy.rb
blob: d703d560e7161329e2279c363544856f553b3ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class BaliPhy <Formula
  url 'http://www.biomath.ucla.edu/msuchard/bali-phy/bali-phy-2.1.0.tar.gz'
  homepage 'http://www.biomath.ucla.edu/msuchard/bali-phy/'
  md5 'ce5d96d464c3a8957caf6683f5b4ee2c'

  depends_on 'gsl'

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