aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorShaun Jackman2012-10-17 10:45:46 -0700
committerAdam Vandenberg2012-10-27 19:11:34 -0700
commit96fe195d5a9a44e8421271a8d679e1dde0e2f155 (patch)
tree7bf3af08f2e6467343db5ca65b3665ff14b6a76a /Library/Formula
parentdaa9c754fa3a3ad8c90f4a3afec77b9b6eeb0c67 (diff)
downloadhomebrew-96fe195d5a9a44e8421271a8d679e1dde0e2f155.tar.bz2
CD-HIT 4.5.4
Closes #15515. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cd-hit.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/cd-hit.rb b/Library/Formula/cd-hit.rb
new file mode 100644
index 000000000..cc5eafec0
--- /dev/null
+++ b/Library/Formula/cd-hit.rb
@@ -0,0 +1,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