blob: 744f59a976b4304851fa79afeb2871263afc260e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Cufflinks < Formula
url 'http://cufflinks.cbcb.umd.edu/downloads/cufflinks-1.3.0.tar.gz'
homepage 'http://cufflinks.cbcb.umd.edu/'
md5 '6914059cf8c8f22eb388e1fde44deabe'
depends_on 'boost'
depends_on 'samtools'
fails_with :clang do
build 421
end
def install
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|