diff options
| author | Nils Homer | 2012-04-04 23:18:28 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-17 21:31:41 -0700 |
| commit | bb4088c17d8e319d1f7390069f7e4a0eeef84afa (patch) | |
| tree | 961725124d26b37c3040bd135c75157d4b6a10c1 /Library | |
| parent | fd665c81f0b1b4036a8aca2bd92da1244f75606a (diff) | |
| download | homebrew-bb4088c17d8e319d1f7390069f7e4a0eeef84afa.tar.bz2 | |
tmap 0.3.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/tmap.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/tmap.rb b/Library/Formula/tmap.rb new file mode 100644 index 000000000..edba287af --- /dev/null +++ b/Library/Formula/tmap.rb @@ -0,0 +1,20 @@ +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 |
