aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clustal-w.rb
blob: 7fe54065d135e90a99c16d0f699f35598bfdeb8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class ClustalW < Formula
  homepage 'http://www.clustal.org/clustal2/'
  url 'http://www.clustal.org/download/2.1/clustalw-2.1.tar.gz'
  sha1 'f29784f68585544baa77cbeca6392e533d4cf433'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end