blob: cab3931e53559ed6368d694c09d43cabaffa25b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class ClustalW < Formula
url 'http://www.clustal.org/download/2.0.12/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
|