homebrew-core/Formula/tmap.rb
Nils Homer 17c84caac0 tmap 0.3.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-17 21:31:41 -07:00

20 lines
477 B
Ruby

require 'formula'
class Tmap < Formula
homepage 'http://github.com/iontorrent/TMAP'
url 'http://github.com/iontorrent/TMAP/tarball/tmap.0.3.7'
md5 '032741c677c5aca211984b0e79130169'
head 'https://github.com/iontorrent/TMAP.git'
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