homebrew-core/Formula/tophat.rb
Carlos Borroto 0ba92e46bd tophat 1.3.3
Closes Homebrew/homebrew#9067.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-12-09 16:34:38 -06:00

19 lines
509 B
Ruby

require 'formula'
class Tophat < Formula
url 'http://tophat.cbcb.umd.edu/downloads/tophat-1.3.3.tar.gz'
homepage 'http://tophat.cbcb.umd.edu/'
md5 '5858f423fb9736aac5186953d5c5778f'
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