2010-03-29 15:28:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bwa < Formula
|
2011-10-14 19:40:07 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/bio-bwa/bwa-0.5.9.tar.bz2'
|
2010-03-29 15:28:11 +00:00
|
|
|
homepage 'http://bio-bwa.sourceforge.net/'
|
2011-10-14 19:40:07 +00:00
|
|
|
md5 '27facf40c92e9af40def844b245ed7db'
|
|
|
|
head 'https://github.com/lh3/bwa.git'
|
2010-03-29 15:28:11 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
inreplace "Makefile" do |s|
|
|
|
|
s.change_make_var! 'CFLAGS', ENV.cflags
|
|
|
|
end
|
|
|
|
|
|
|
|
system "make"
|
|
|
|
bin.install "bwa"
|
|
|
|
man1.install "bwa.1"
|
|
|
|
end
|
|
|
|
end
|