blob: 37d81e1d6d2111ba7d6c2fef313119903589995a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Whirr < Formula
homepage 'http://whirr.apache.org/'
url 'http://www.apache.org/dyn/closer.cgi?path=whirr/whirr-0.8.2/whirr-0.8.2.tar.gz'
sha1 'd5bd127bc396795e4c512c1584a8c73abde5a78c'
def install
libexec.install %w[bin conf lib]
bin.write_exec_script libexec/'bin/whirr'
end
end
|