forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quorum.rb
33 lines (27 loc) · 802 Bytes
/
quorum.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 Quorum < Formula
homepage "http://www.genome.umd.edu/quorum.html"
# doi "arXiv:1307.3515"
# tag "bioinformatics"
url "ftp://ftp.genome.umd.edu/pub/QuorUM/quorum-1.0.0.tar.gz"
sha256 "ec11af84ab3887b1cb0a526d9ab295e8cde6fe2cbba3060147da9fa2f12a518d"
bottle do
sha256 "fa5fc25145e21539ee3b27872c09f43f2072760ece657388ecbdff6a7d87208a" => :x86_64_linux
end
depends_on "jellyfish"
depends_on "pkg-config" => :build
fails_with :clang do
build 600
cause "error: 'ext/stdio_filebuf.h' file not found"
end
def install
system "./configure",
"--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/quorum", "--version"
end
end