aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bali-phy.rb
blob: 1028fcf7d75df0dac9d3011c3c529d4b9c6b2d9f (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