aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/emboss.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/emboss.rb b/Library/Formula/emboss.rb
new file mode 100644
index 000000000..71f6c815f
--- /dev/null
+++ b/Library/Formula/emboss.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Emboss <Formula
+ url 'ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.3.1.tar.gz'
+ homepage 'http://emboss.sourceforge.net/'
+ md5 '04d1179b6261103a77e396d54f8ac38e'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end