forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprank.rb
30 lines (25 loc) · 887 Bytes
/
prank.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
class Prank < Formula
desc "A multiple alignment program for DNA, codon and amino-acid sequences"
homepage "http://wasabiapp.org/software/prank/"
url "http://wasabiapp.org/download/prank/prank.source.140603.tgz"
sha256 "9a48064132c01b6dba1eec90279172bf6c13d96b3f1b8dd18297b1a53d17dec6"
head "https://github.com/ariloytynoja/prank-msa.git"
bottle do
cellar :any
sha256 "645b55928f814076559c0515ba5760006efbd6352d9599c09f769e5b05d9441a" => :yosemite
sha256 "c935677f529955560e10caedadaa2294e7df2a29559691c8bd5c4f4406b782d7" => :mavericks
sha256 "126c9194604ebf8af867ad12e7c621ff271ae7d17fa47dc509941ceb681eb263" => :mountain_lion
end
depends_on "mafft"
depends_on "exonerate"
def install
cd "src" do
system "make"
bin.install "prank"
man1.install "prank.1"
end
end
test do
system "#{bin}/prank", "-help"
end
end