aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/quicktree.rb
blob: c4cf7bc6bf5cc6349b0a03765cdfa196edb8d9f2 (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