Juju 1.12.0
Closes Homebrew/homebrew#21858. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
0bd3e85acb
commit
389cc07ed0
1 changed files with 22 additions and 0 deletions
22
Formula/juju.rb
Normal file
22
Formula/juju.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
require 'formula'
|
||||
|
||||
class Juju < Formula
|
||||
homepage 'https://juju.ubuntu.com'
|
||||
url "https://launchpad.net/juju-core/1.12/1.12.0/+download/juju-core_1.12.0-1.tar.gz"
|
||||
version "1.12.0-1"
|
||||
sha1 "b552919f5f4ed5a34885a2a6a8a4a0d7be485267"
|
||||
|
||||
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'
|
||||
end
|
||||
|
||||
def test
|
||||
system "#{bin}/juju", "version"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue