2011-03-31 20:05:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cufflinks < Formula
|
2012-01-03 19:49:20 +00:00
|
|
|
url 'http://cufflinks.cbcb.umd.edu/downloads/cufflinks-1.3.0.tar.gz'
|
2011-03-31 20:05:54 +00:00
|
|
|
homepage 'http://cufflinks.cbcb.umd.edu/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'fa93a7a33f0649793ec1d185cb7043fd0dc2018b'
|
2011-03-31 20:05:54 +00:00
|
|
|
|
|
|
|
depends_on 'boost'
|
|
|
|
depends_on 'samtools'
|
|
|
|
|
2012-08-08 18:06:01 +00:00
|
|
|
fails_with :clang do
|
|
|
|
build 421
|
|
|
|
end
|
|
|
|
|
2011-03-31 20:05:54 +00:00
|
|
|
def install
|
2011-05-05 18:23:37 +00:00
|
|
|
ENV.deparallelize
|
2011-03-31 20:05:54 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|