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