homebrew-core/Formula/juju.rb
Jonathon Klobucar d286e8d60f Remove fails with clang due to go 1.2.
Closes Homebrew/homebrew#24853.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-12-01 20:09:07 -06:00

34 lines
919 B
Ruby

require 'formula'
class Juju < Formula
homepage 'https://juju.ubuntu.com'
url 'https://launchpad.net/juju-core/1.16/1.16.3/+download/juju-core_1.16.3.tar.gz'
sha1 '986ae55f58ce1838c20eea556a0afc23aff9cdd4'
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'
(bash_completion/'juju-completion.bash').write <<-EOS.undent
_juju()
{
local cur prev options files targets
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
actions=$(juju help commands 2>/dev/null | awk '{print $1}')
COMPREPLY=( $( compgen -W "${actions}" -- ${cur} ) )
return 0
}
complete -F _juju juju
EOS
end
def test
system "#{bin}/juju", "version"
end
end