aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/quicktree.rb
blob: ca2f9ff4e3b90d0c4e6e9c95582efa7034197c94 (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/'
  sha1 '9924d51801149d59fd90f704aa7e5802f7b1ef31'

  def install
    system "make"
    bin.install "bin/quicktree"
  end
end