homebrew-core/Formula/clustal-w.rb
Ben Blackburne 13d76dfeb2 added clustalW build (some people still use it!)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-11 12:07:53 -07:00

12 lines
323 B
Ruby

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