homebrew-core/Formula/juju.rb

26 lines
593 B
Ruby
Raw Normal View History

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
2013-09-20 05:21:47 +00:00
fails_with :clang do
cause "clang: error: no such file or directory: 'libgcc.a'"
end
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