blob: cb20dfa48e5fc10c8b4b64c459a62fe4ee25b804 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
require 'formula'
class Sga < Formula
homepage 'https://github.com/jts/sga'
url 'https://github.com/jts/sga/tarball/v0.9.35'
sha1 'e505f46fc6ba0e991096d7d9a9d50d37c94e4d4c'
head 'https://github.com/jts/sga.git'
depends_on :autoconf => :build
depends_on :automake => :build
# Only header files are used, so :build is appropriate
depends_on 'google-sparsehash' => :build
depends_on 'bamtools'
# Fix two compiler errors. Both fixed upstream.
def patches
['http://github.com/jts/sga/commit/b4efb323ed.diff',
'https://github.com/jts/sga/commit/dfe74633fb.diff'] unless build.head?
end
def install
cd 'src' do
system "./autogen.sh"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-bamtools=#{HOMEBREW_PREFIX}"
system "make install"
end
end
def test
system "#{bin}/sga", "--version"
end
end
|