forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cufflinks.rb
33 lines (29 loc) · 1.07 KB
/
cufflinks.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'formula'
class Cufflinks < Formula
homepage "http://cufflinks.cbcb.umd.edu/"
url "http://cufflinks.cbcb.umd.edu/downloads/cufflinks-2.2.1.tar.gz"
sha1 "2b1b3a8f12cd2821ffc74ffbdd55cb329f37cbbb"
depends_on 'boost' => :build
depends_on 'samtools' => :build
depends_on 'eigen' => :build
def install
ENV['EIGEN_CPPFLAGS'] = "-I#{Formula["eigen"].opt_include}/eigen3"
ENV.append 'LIBS', '-lboost_system-mt -lboost_thread-mt'
cd 'src' do
# Fixes 120 files redefining `foreach` that break building with boost
# See http://seqanswers.com/forums/showthread.php?t=16637
`for x in *.cpp *.h; do sed 's/foreach/for_each/' $x > x; mv x $x; done`
inreplace 'common.h', 'for_each.hpp', 'foreach.hpp'
end
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system 'make'
ENV.j1
system 'make install'
end
test do
system "#{bin}/cuffdiff 2>&1 |grep -q cuffdiff"
end
end