forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathandi.rb
33 lines (28 loc) · 1.04 KB
/
andi.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
class Andi < Formula
desc "Estimate evolutionary distance between similar genomes"
homepage "https://github.com/EvolBioInf/andi"
# tag "bioinformatics"
# doi "10.1093/bioinformatics/btu815"
url "https://github.com/EvolBioInf/andi/releases/download/v0.10/andi-0.10.tar.gz"
sha256 "7182d43bd13aa51d12a5d69fe4e3e4f83aab8429f5030192ae860e1a1b0e3f77"
revision 2
bottle do
cellar :any
sha256 "cee3638fab897ec5799a524ce95ef5caef0e3045048504f805a228ba6eaaa5f4" => :sierra
sha256 "dd082c541d6f7128d093869cab86c1bb28e8cad61415fe2dd432dbffcf7661b9" => :el_capitan
sha256 "1c71120209974c2d9810a3c1e16eb260e14ad2e5a4f302b1d1ace1a73b4d4223" => :yosemite
sha256 "aec49457eb8725aa01abcc019c014bef6f30c2a5f2d0fd2430a29120a46b7623" => :x86_64_linux
end
depends_on "gsl"
def install
system "./configure",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--without-libdivsufsort"
system "make", "install"
end
test do
system "#{bin}/andi", "--version"
end
end