17 lines
445 B
Ruby
17 lines
445 B
Ruby
require 'formula'
|
|
|
|
class Cufflinks < Formula
|
|
url 'http://cufflinks.cbcb.umd.edu/downloads/cufflinks-1.0.3.tar.gz'
|
|
homepage 'http://cufflinks.cbcb.umd.edu/'
|
|
md5 '8642133b79df30087caed9069fa7dca0'
|
|
|
|
depends_on 'boost'
|
|
depends_on 'samtools'
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|