aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clustal-w.rb
diff options
context:
space:
mode:
authorBen Blackburne2009-11-12 17:19:08 +0000
committerAdam Vandenberg2010-08-11 12:07:53 -0700
commit8f649b781d2f65241e6e3e4b9f45691901a8db87 (patch)
tree444833891dd8b66c45e396821ad69bf9df6cb160 /Library/Formula/clustal-w.rb
parent8769d13817832e418ad283e3504eaebe551a6509 (diff)
downloadhomebrew-8f649b781d2f65241e6e3e4b9f45691901a8db87.tar.bz2
added clustalW build (some people still use it!)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/clustal-w.rb')
-rw-r--r--Library/Formula/clustal-w.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/clustal-w.rb b/Library/Formula/clustal-w.rb
new file mode 100644
index 000000000..c1be57255
--- /dev/null
+++ b/Library/Formula/clustal-w.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class ClustalW <Formula
+ url 'http://www.clustal.org/download/current/clustalw-2.0.12.tar.gz'
+ homepage 'http://www.clustal.org/'
+ md5 '8d0c50ffbe5898b03509aa0a7709f642'
+
+ def install
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end