forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cufflinks.rb
37 lines (32 loc) · 1.13 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
34
35
36
37
require 'formula'
class Cufflinks < Formula
homepage 'http://cufflinks.cbcb.umd.edu/'
url 'http://cufflinks.cbcb.umd.edu/downloads/cufflinks-2.1.1.tar.gz'
sha1 '9c5bf3d3872e8dd358ba7d7407644ab2cbbfdcb6'
depends_on 'boost' => :build
depends_on 'samtools' => :build
depends_on 'eigen' => :build
fails_with :clang do
build 503
cause %q[error: unknown type name 'shared_ptr']
end
def install
ENV['EIGEN_CPPFLAGS'] = "-I#{Formula["eigen"].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