2013-08-01 17:50:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Juju < Formula
|
|
|
|
homepage 'https://juju.ubuntu.com'
|
2014-09-05 22:33:55 +00:00
|
|
|
url 'https://launchpad.net/juju-core/1.20/1.20.7/+download/juju-core_1.20.7.tar.gz'
|
|
|
|
sha1 'e0b087f1e8c464e3a0ac50c00493855efc3cf7cd'
|
2014-04-25 20:57:42 +00:00
|
|
|
|
2014-03-29 14:23:20 +00:00
|
|
|
bottle do
|
2014-09-05 23:04:31 +00:00
|
|
|
sha1 "e31e839d1199ac922616c235fd92ed6391c4ad9b" => :mavericks
|
|
|
|
sha1 "bbc47aadab320dcdee1d75b3c7ea0c375b4dbe0a" => :mountain_lion
|
|
|
|
sha1 "fbe9d1e3630a5bb707bf689ca78439850adb79e8" => :lion
|
2014-03-29 14:23:20 +00:00
|
|
|
end
|
|
|
|
|
2013-08-01 17:50:08 +00:00
|
|
|
depends_on 'go' => :build
|
|
|
|
|
|
|
|
def install
|
2014-09-14 19:30:17 +00:00
|
|
|
ENV["GOPATH"] = buildpath
|
|
|
|
system "go", "build", "github.com/juju/juju/cmd/juju"
|
|
|
|
bin.install "juju"
|
2014-07-05 15:08:51 +00:00
|
|
|
bash_completion.install "src/github.com/juju/juju/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
|