blob: 75dea40989b5d30c101d80823c1feb7159befca9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|