2012-04-05 03:18:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Tmap < Formula
|
|
|
|
homepage 'http://github.com/iontorrent/TMAP'
|
2012-04-23 15:17:11 +00:00
|
|
|
url 'http://github.com/iontorrent/TMAP/tarball/tmap.0.3.7'
|
|
|
|
md5 '2283f15ca05c27c534cef22850711bba'
|
|
|
|
version '0.3.7'
|
2012-04-05 03:18:28 +00:00
|
|
|
|
|
|
|
head 'https://github.com/iontorrent/TMAP.git'
|
|
|
|
|
2012-04-22 21:58:38 +00:00
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
end
|
|
|
|
|
2012-04-05 03:18:28 +00:00
|
|
|
def install
|
|
|
|
system "sh autogen.sh"
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/tmap", "-v"
|
2012-04-05 03:18:28 +00:00
|
|
|
end
|
|
|
|
end
|