aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/juju.rb
blob: 9f7820f754c173204aed15d7de2b5bc9c8e751a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'formula'

class Juju < Formula
  homepage 'https://juju.ubuntu.com'
  url 'https://launchpad.net/juju-core/1.18/1.18.1/+download/juju-core_1.18.1.tar.gz'
  sha1 '9109ad3fde28cca4e8056b5c3ebb0ef0a26b7275'

  bottle do
    sha1 "5e2c7004214bd1bb09f356f4bc18c86dd729cdee" => :mavericks
    sha1 "4725f55dd9345ece43202538c56d7afcd29f3a3e" => :mountain_lion
    sha1 "62f01417603e907838d423d39bb8fc01ed5b564b" => :lion
  end

  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.install "src/launchpad.net/juju-core/etc/bash_completion.d/juju-core"
  end

  test do
    system "#{bin}/juju", "version"
  end
end