aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bwa.rb
blob: 552b76917b5147cccfdc45e68b28c400a69c56f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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