homebrew-core/Formula/bwa.rb
Jack Nagel 38acb5f3e7 bwa: avoid inreplace
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-09 22:46:44 -06:00

15 lines
372 B
Ruby

require 'formula'
class Bwa < Formula
homepage 'http://bio-bwa.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/bio-bwa/bwa-0.5.10.tar.bz2'
md5 '04962f916f761dc259d9fb2452b46c5d'
head 'https://github.com/lh3/bwa.git'
def install
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
bin.install "bwa"
man1.install "bwa.1"
end
end