2012-04-05 03:18:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Tmap < Formula
|
|
|
|
homepage 'http://github.com/iontorrent/TMAP'
|
2012-04-22 21:58:10 +00:00
|
|
|
url 'http://github.com/iontorrent/TMAP/tarball/tmap.0.3.8'
|
|
|
|
md5 'a441bcbb681f427bada3f16a220685e4'
|
|
|
|
version '0.3.8'
|
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
|
|
|
|
system "tmap"
|
|
|
|
end
|
|
|
|
end
|