homebrew-core/Formula/bowtie.rb

13 lines
345 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Bowtie < Formula
homepage 'http://bowtie-bio.sourceforge.net/index.shtml'
2012-10-21 22:27:15 +00:00
url 'http://downloads.sourceforge.net/project/bowtie-bio/bowtie/0.12.8/bowtie-0.12.8-src.zip'
sha1 '56fd4dfd1d8ef995f041d11ce6078dd1e22a655f'
def install
system "make"
bin.install %W(bowtie bowtie-build bowtie-inspect)
end
end