aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/unafold.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/unafold.rb b/Library/Formula/unafold.rb
new file mode 100644
index 000000000..75dea4098
--- /dev/null
+++ b/Library/Formula/unafold.rb
@@ -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