aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/quicktree.rb
diff options
context:
space:
mode:
authorJonathan Badger2010-07-23 19:26:27 -0700
committerAdam Vandenberg2010-07-26 17:47:31 -0700
commit7853b1972453415ebd3cb0d317414e551eea8278 (patch)
tree5a7efa3f3fa27463ec542c17497eb0c0cee42eed /Library/Formula/quicktree.rb
parent94211cfc261921010af32416d66d7d638e246934 (diff)
downloadhomebrew-7853b1972453415ebd3cb0d317414e551eea8278.tar.bz2
Sanger quicktree phylogenetic tree prog formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/quicktree.rb')
-rw-r--r--Library/Formula/quicktree.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/quicktree.rb b/Library/Formula/quicktree.rb
new file mode 100644
index 000000000..988207526
--- /dev/null
+++ b/Library/Formula/quicktree.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Quicktree <Formula
+ url 'ftp://ftp.sanger.ac.uk/pub4/resources/software/quicktree/quicktree.tar.gz'
+ version '1.1'
+ homepage 'http://www.sanger.ac.uk/resources/software/quicktree/'
+ md5 '13331f12b35ec36904c0a01921fe96e7'
+
+ def install
+ system "make"
+ bin.install("bin/quicktree")
+ end
+end