blob: 766c4ba1e82e835d94ec0fc319f8101870e6bdda (
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.1.0.tar.gz'
homepage 'http://cufflinks.cbcb.umd.edu/'
md5 '5f3a10d3a1f3b86309896fee6eaea155'
depends_on 'boost'
depends_on 'samtools'
def install
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|