aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/clustal-omega.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/clustal-omega.rb b/Library/Formula/clustal-omega.rb
new file mode 100644
index 000000000..535665900
--- /dev/null
+++ b/Library/Formula/clustal-omega.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class ClustalOmega < Formula
+ homepage 'http://www.clustal.org/omega/'
+ url 'http://www.clustal.org/omega/clustal-omega-1.1.0.tar.gz'
+ sha1 'b8c8ac500811c50a335c9dc2fcaf47a7245fa6a0'
+
+ depends_on 'argtable'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end