blob: 73d176b01ee8816881849e655ab26c88d71a9cf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class Tmap < Formula
homepage 'http://github.com/iontorrent/TMAP'
url 'http://github.com/iontorrent/TMAP/tarball/tmap.0.3.7'
sha1 '8cb8c6d9ebaeb3486a74a402a07a08c778964682'
version '0.3.7'
head 'https://github.com/iontorrent/TMAP.git'
fails_with :clang do
build 318
end
def install
system "sh autogen.sh"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/tmap", "-v"
end
end
|