forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbpipe.rb
28 lines (22 loc) · 750 Bytes
/
bpipe.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
class Bpipe < Formula
homepage "https://github.com/ssadedin/bpipe"
# doi "10.1093/bioinformatics/bts167"
# tag "bioinformatics"
url "https://github.com/ssadedin/bpipe/releases/download/0.9.8.6/bpipe-0.9.8.6.tar.gz"
sha1 "1c30aa068ada6b435524ef2ec031804ccade42a6"
head "https://github.com/ssadedin/bpipe.git"
bottle do
root_url "https://downloads.sf.net/project/machomebrew/Bottles/science"
cellar :any
sha1 "ea55f54357111679fa9ec52b750100cfbc32c6ca" => :yosemite
sha1 "3e35a2ea71c536dd71bccbb6ed5df44bbe843952" => :mavericks
sha1 "18a96ed694e553c8836ad48c6defa4766324289c" => :mountain_lion
end
depends_on :java
def install
prefix.install Dir["*"]
end
test do
system "#{bin}/bpipe"
end
end