aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tophat.rb
blob: 60d64ae9e9a4df84069ee47923d2fe2c62d3731f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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