forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuproc.rb
32 lines (26 loc) · 798 Bytes
/
uproc.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
require "formula"
class Uproc < Formula
homepage "http://uproc.gobics.de/"
head "https://github.com/gobics/uproc.git"
bottle do
cellar :any
sha1 "e85ca47439010ba2bbed0676569516018647b12d" => :yosemite
sha1 "a6d9496f7271755e9104ad7fa4af59476b982815" => :mavericks
sha1 "6216fa194d8413b905d58b94993abb2eac531b48" => :mountain_lion
end
#tag "bioinformatics"
url "http://uproc.gobics.de/downloads/uproc/uproc-1.1.2.tar.gz"
sha1 "32acdf691001e93d3a00e5351fb876c6b71779a7"
needs :openmp # => :recommended
def install
system "./configure",
"--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/uproc-dna", "--version"
end
end