blob: 6880c673f3ebb7f82c36a52aa14f13e9b49c1e25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Cufflinks < Formula
url 'http://cufflinks.cbcb.umd.edu/downloads/cufflinks-1.2.1.tar.gz'
homepage 'http://cufflinks.cbcb.umd.edu/'
md5 '02d1428c9958fea545ab072e773dde4a'
depends_on 'boost'
depends_on 'samtools'
def install
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|