blob: 18883dea824feb5f370941882abdee1297df4c20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Bbcp < Formula
homepage 'http://www.slac.stanford.edu/%7Eabh/bbcp'
url 'http://www.slac.stanford.edu/~abh/bbcp/bbcp.git'
version '14.04.14.00.1'
head 'http://www.slac.stanford.edu/~abh/bbcp/bbcp.git'
def install
mkdir %w{bin obj}
system "make", "-C", "src", "Darwin"
bin.install "bin/bbcp"
end
test do
system "#{bin}/bbcp", "--help"
end
end
|