forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mafft.rb
53 lines (46 loc) · 1.63 KB
/
mafft.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
class Mafft < Formula
desc "Multiple alignments with fast Fourier transforms"
homepage "https://mafft.cbrc.jp/alignment/software/"
# doi "10.1093/nar/gkf436"
# tag "bioinformatics"
url "https://mafft.cbrc.jp/alignment/software/mafft-7.305-with-extensions-src.tgz"
sha256 "26fccbd7091edfe6528a0535d33738546ee57b4a3b6e43332ffc3323e29ff4d1"
bottle do
cellar :any_skip_relocation
sha256 "8809d503a8ce528e51072e57b80902384df4f2a011d427a431b8ea533e6f5d5d" => :sierra
sha256 "2e07771ee7a58f3ab7595b7b20d5f220104ce40414977d691d2f03f1d793049c" => :el_capitan
sha256 "8806462b6e5e4077819b18e6a48eff94f154199ca03a2e524de273b6b09d2a7f" => :yosemite
sha256 "d9dddf512066174d8c819051397e155b6e964c226aa39998349e247cdc8a987b" => :x86_64_linux
end
fails_with :clang do
build 421
cause <<-EOS.undent
Clang does not allow default arguments in out-of-line definitions of
class template members.
EOS
end
def install
make_args = %W[CC=#{ENV.cc} CXX=#{ENV.cxx} CFAGS=#{ENV.cflags}
CXXFLAGS=#{ENV.cxxflags} PREFIX=#{prefix} MANDIR=#{man1}]
make_args << "ENABLE_MULTITHREAD=" if MacOS.version <= :snow_leopard
make_args << "install"
cd "core" do
system "make", *make_args
end
cd "extensions" do
system "make", *make_args
end
end
def caveats
if MacOS.version <= :snow_leopard
<<-EOS.undent
This build of MAFFT is not multithreaded on Snow Leopard
because its compiler does not support thread-local storage.
EOS
end
end
test do
(testpath/"test.fa").write ">1\nA\n>2\nA"
system "mafft", "test.fa"
end
end