tophat 1.2.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
dc4dbf477a
commit
dd8bb6a408
1 changed files with 19 additions and 0 deletions
19
Formula/tophat.rb
Normal file
19
Formula/tophat.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue