aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bowtie.rb
blob: b659e80aadcbe9060cc84f5ff6d2afd5a999a42f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Bowtie < Formula
  url 'http://downloads.sourceforge.net/project/bowtie-bio/bowtie/0.12.7/bowtie-0.12.7-src.zip'
  homepage 'http://bowtie-bio.sourceforge.net/index.shtml'
  md5 '2808d61eaf15c9f7138794766c99a561'

  def install
    system "make"
    bin.install %W(bowtie bowtie-build bowtie-inspect)
  end
end