2013-08-01 17:50:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Juju < Formula
|
|
|
|
homepage 'https://juju.ubuntu.com'
|
2014-04-05 14:46:21 +00:00
|
|
|
url 'https://launchpad.net/juju-core/1.18/1.18.0/+download/juju-core_1.18.0.tar.gz'
|
|
|
|
sha1 '48bea04a5404de900512fd6399fc8db546993eeb'
|
2013-08-15 04:30:32 +00:00
|
|
|
|
2014-03-29 14:23:20 +00:00
|
|
|
bottle do
|
2014-04-06 20:44:17 +00:00
|
|
|
sha1 "419261bda859fb6981daa950510dceb81869b504" => :mavericks
|
|
|
|
sha1 "eac1b7e49f20a81876f9df7037bc3cc3ec360799" => :mountain_lion
|
|
|
|
sha1 "b05f9f3d176e696dc4b40a370a247938f903ce95" => :lion
|
2014-03-29 14:23:20 +00:00
|
|
|
end
|
|
|
|
|
2013-08-01 17:50:08 +00:00
|
|
|
depends_on 'go' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['GOPATH'] = buildpath
|
|
|
|
args = %w(install launchpad.net/juju-core/cmd/juju)
|
|
|
|
args.insert(1, "-v") if ARGV.verbose?
|
|
|
|
system "go", *args
|
|
|
|
bin.install 'bin/juju'
|
2014-04-05 14:46:21 +00:00
|
|
|
bash_completion.install "src/launchpad.net/juju-core/etc/bash_completion.d/juju-core"
|
2013-08-01 17:50:08 +00:00
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2013-08-01 17:50:08 +00:00
|
|
|
system "#{bin}/juju", "version"
|
|
|
|
end
|
|
|
|
end
|