Added formula for unafold

unafold is an extremely popular tool for computing secondary structures
of nucleic acids, and it's a standard part of the bioinformatics
repertoire.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Uri Laserson 2011-01-18 12:04:51 -05:00 committed by Adam Vandenberg
parent f0bd1d7c01
commit c90651437d

17
Formula/unafold.rb Normal file
View file

@ -0,0 +1,17 @@
require 'formula'
class Unafold <Formula
url 'http://dinamelt.bioinfo.rpi.edu/download/unafold-3.8.tar.gz'
homepage 'http://dinamelt.bioinfo.rpi.edu/unafold/'
md5 'c1d473c1c4685b7ded51979d8fe4ce0b'
depends_on 'gd'
depends_on 'gnuplot'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end