diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/bali-phy.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/bali-phy.rb b/Library/Formula/bali-phy.rb new file mode 100644 index 000000000..d703d560e --- /dev/null +++ b/Library/Formula/bali-phy.rb @@ -0,0 +1,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 |
