From 20a395e4a1a4cd34ff0ddf41444cdfd7c4f81d82 Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Fri, 15 Jun 2012 10:55:32 -0700 Subject: sga 0.9.19 Closes #12862. Signed-off-by: Adam Vandenberg --- Library/Formula/sga.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Library/Formula/sga.rb (limited to 'Library/Formula') diff --git a/Library/Formula/sga.rb b/Library/Formula/sga.rb new file mode 100644 index 000000000..253e12867 --- /dev/null +++ b/Library/Formula/sga.rb @@ -0,0 +1,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 -- cgit v1.2.3