added clustalW build (some people still use it!)

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Ben Blackburne 2009-11-12 17:19:08 +00:00 committed by Adam Vandenberg
parent 6ac0015fb8
commit 13d76dfeb2
1 changed files with 12 additions and 0 deletions

12
Formula/clustal-w.rb Normal file
View File

@ -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