blob: eb3e2e4bb3c78ba85245854ef8ffe4d3dc628a1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Samtools <Formula
url 'http://sourceforge.net/projects/samtools/files/samtools/0.1.12/samtools-0.1.12a.tar.bz2'
homepage 'http://samtools.sourceforge.net/'
md5 '500ae32fb431de3940e0e955744b9b36'
def install
# -s is needed on OS X here.
inreplace ["Makefile", "bcftools/Makefile"], "$(AR)", "$(AR) -s"
system "make"
system "make razip"
bin.install %w{samtools razip}
prefix.install %w{examples misc}
lib.install 'libbam.a'
(include+'bam').install Dir['*.h']
end
end
|