homebrew-core/Formula/bowtie.rb
Adam Vandenberg dc522567e6 bowtie 0.12.7
Updated and fixes Homebrew/homebrew#3043
2010-11-02 10:15:27 -07:00

12 lines
335 B
Ruby

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