homebrew-core/Formula/cufflinks.rb

18 lines
445 B
Ruby

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