2011-03-07 20:11:19 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tophat < Formula
|
2011-06-23 14:45:38 +00:00
|
|
|
url 'http://tophat.cbcb.umd.edu/downloads/tophat-1.3.1.tar.gz'
|
2011-03-07 20:11:19 +00:00
|
|
|
homepage 'http://tophat.cbcb.umd.edu/'
|
2011-06-23 14:45:38 +00:00
|
|
|
md5 'c6e39c7935fd6c7b43a80db3a179a537'
|
2011-03-07 20:11:19 +00:00
|
|
|
|
|
|
|
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
|