cufflinks version 1.0.3 for OS X
The formula for cufflinks was recently updated to version 1.0.3.
To install cufflinks on your Mac, open your Terminal application and run the following commands;
brew update brew install cufflinks
The updated formula is as follows:
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.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
This package, cufflinks, depends on;
boost
samtools
See which packages depend on cufflinks.















