homebrew-core/Formula/unafold.rb

18 lines
455 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Unafold < Formula
2012-09-03 19:15:51 +00:00
homepage 'http://mfold.rna.albany.edu/'
url 'http://mfold.rna.albany.edu/cgi-bin/UNAFold-download.cgi?unafold-3.8.tar.gz'
sha1 'b4f0296af9809ecb9f067f5adf17249315a50b7d'
depends_on 'gd'
depends_on 'gnuplot'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end