2013-08-01 17:50:08 +00:00
|
|
|
class Juju < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "DevOps management tool"
|
2015-06-14 00:08:02 +00:00
|
|
|
homepage "https://juju.ubuntu.com"
|
2015-09-17 14:35:32 +00:00
|
|
|
url "https://launchpad.net/juju-core/1.24/1.24.6/+download/juju-core_1.24.6.tar.gz"
|
|
|
|
sha256 "00928687041e3520146d7d937a51d1e7caf9b588bb9c80f02846addebe452cbd"
|
2014-04-25 20:57:42 +00:00
|
|
|
|
2014-03-29 14:23:20 +00:00
|
|
|
bottle do
|
2015-09-23 16:30:11 +00:00
|
|
|
cellar :any_skip_relocation
|
2015-09-26 15:48:24 +00:00
|
|
|
sha256 "86c024a0f80b3faddb2113c3e0ef830880380c6a91a8ddf5e675bf6999bad6aa" => :el_capitan
|
|
|
|
sha256 "b9396deaff9adb5c9d56d67dcf4b3167d1516bb1ed31f5d98e39c99c410f0e89" => :yosemite
|
|
|
|
sha256 "b4bec380a95b4802d13f7a9b6accd311ec6cbb39272ea60cb0b521f728d72b3e" => :mavericks
|
2014-03-29 14:23:20 +00:00
|
|
|
end
|
|
|
|
|
2015-06-14 00:08:02 +00:00
|
|
|
depends_on "go" => :build
|
2013-08-01 17:50:08 +00:00
|
|
|
|
2015-09-17 14:35:32 +00:00
|
|
|
# El Capitan is not registered in Juju 1.24.x.
|
|
|
|
# https://bugs.launchpad.net/juju-core/+bug/1465317
|
|
|
|
# https://github.com/juju/juju/pull/3388
|
|
|
|
patch do
|
|
|
|
url "https://gist.githubusercontent.com/sinzui/68da12cb48493d41bdbc/raw/29f30ce225be0c4599ef2834f1585c939a507348/el-capitan.patch"
|
|
|
|
sha256 "326764b4c6da32823aa70b4a5f03a1d196983de4714a8d259e44e7a7a1ac53fe"
|
|
|
|
end
|
|
|
|
|
2013-08-01 17:50:08 +00:00
|
|
|
def install
|
2014-09-14 19:30:17 +00:00
|
|
|
ENV["GOPATH"] = buildpath
|
|
|
|
system "go", "build", "github.com/juju/juju/cmd/juju"
|
2014-09-25 22:30:38 +00:00
|
|
|
system "go", "build", "github.com/juju/juju/cmd/plugins/juju-metadata"
|
|
|
|
bin.install "juju", "juju-metadata"
|
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
|