aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sga.rb
blob: 253e12867de38183c8e4e40381de3f0f40226c4b (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
require 'formula'

class Sga < Formula
  homepage 'https://github.com/jts/sga'
  url 'https://github.com/jts/sga/tarball/v0.9.19'
  sha1 '3f33b708ec930335045ab2a25de291a978f1b875'

  head 'https://github.com/jts/sga.git'

  # Only header files are used, so :build is appropriate
  depends_on 'google-sparsehash' => :build
  depends_on 'bamtools'

  def install
    chdir 'src' do
      system "./autogen.sh"
      system "./configure", "--disable-debug", "--disable-dependency-tracking",
        "--prefix=#{prefix}", "--with-bamtools=/usr/local"
      system "make install"
    end
  end

  def test
    system "#{bin}/sga", "--version"
  end
end