aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorUri Laserson2011-01-11 13:21:19 -0500
committerMike McQuaid2011-01-16 15:32:06 +0000
commita635d756fe357abb0edf108c4cf63f1d93f18f5a (patch)
tree35e4eba539f1d53f657a46491b7fc3eae623731f /Library/Formula
parent3ca08682293e3e0cb1ee5ce7203fd1187e38c0be (diff)
downloadhomebrew-a635d756fe357abb0edf108c4cf63f1d93f18f5a.tar.bz2
Added formula for exonerate
exonerate is a fast and popular tool for performing sequence alignment using many common bioinformatics models. It does not come bundled in any other common bioinformatics package, and it can also be a nightmare to build without good dependency management. Closes #3867. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/exonerate.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/exonerate.rb b/Library/Formula/exonerate.rb
new file mode 100644
index 000000000..71fccde10
--- /dev/null
+++ b/Library/Formula/exonerate.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Exonerate <Formula
+ url 'http://www.ebi.ac.uk/~guy/exonerate/exonerate-2.2.0.tar.gz'
+ homepage 'http://www.ebi.ac.uk/~guy/exonerate/'
+ md5 'ad3f7fc413376201c4631687b2e0ae89'
+ depends_on 'glib'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ ENV.j1
+ system "make"
+ system "make install"
+ end
+end