diff options
| author | Carlos Borroto | 2011-03-07 15:11:19 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-07 12:50:58 -0800 |
| commit | 18d5d1d651104b6a77c7f39947c1aa19f8a25289 (patch) | |
| tree | 655d6c3c5214815c9dcf37d5a52f306790b61e23 /Library/Formula/tophat.rb | |
| parent | 83f4115171a3494e439e8d0906da56e65f8e25b8 (diff) | |
| download | homebrew-18d5d1d651104b6a77c7f39947c1aa19f8a25289.tar.bz2 | |
tophat 1.2.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/tophat.rb')
| -rw-r--r-- | Library/Formula/tophat.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/tophat.rb b/Library/Formula/tophat.rb new file mode 100644 index 000000000..72101c6a5 --- /dev/null +++ b/Library/Formula/tophat.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Tophat <Formula + url 'http://tophat.cbcb.umd.edu/downloads/tophat-1.2.0.tar.gz' + homepage 'http://tophat.cbcb.umd.edu/' + md5 '7ada78bdb9a84e13392418aa6cc9142c' + + depends_on 'samtools' + + def install + # It seems this project Makefile doesn't like -j4 + # Disable until consult with upstream + ENV.deparallelize + + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
