homebrew-core/Formula/juju.rb

29 lines
804 B
Ruby
Raw Normal View History

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'
bottle do
sha1 "419261bda859fb6981daa950510dceb81869b504" => :mavericks
sha1 "eac1b7e49f20a81876f9df7037bc3cc3ec360799" => :mountain_lion
sha1 "b05f9f3d176e696dc4b40a370a247938f903ce95" => :lion
end
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"
end
test do
system "#{bin}/juju", "version"
end
end