blob: cc5eafec073afc403d9965f78c70f0f6e80ff4e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|