homebrew-core/Formula/cd-hit.rb
Shaun Jackman 3db8e0784a CD-HIT 4.5.4
Closes Homebrew/homebrew#15515.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-27 19:11:34 -07:00

14 lines
354 B
Ruby

require 'formula'
class CdHit < Formula
homepage 'http://bioinformatics.org/cd-hit/'
url 'http://www.bioinformatics.org/downloads/index.php/cd-hit/cd-hit-v4.5.4-2011-03-07.tgz'
version '4.5.4'
sha1 '743c4b6ec79b9d5acd1e1171587e96c03e3e3003'
def install
system "make"
bin.mkpath
system "make", "PREFIX=#{bin}", "install"
end
end