aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/juju.rb
blob: 9766075b48d0742dced2a563c5b980b4026028d6 (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
require 'formula'

class Juju < Formula
  homepage 'https://juju.ubuntu.com'
  url "https://launchpad.net/juju-core/1.12/1.12.0/+download/juju-core_1.12.0-1.tar.gz"
  version "1.12.0-1"
  sha1 "b552919f5f4ed5a34885a2a6a8a4a0d7be485267"

  devel do
    url "https://launchpad.net/juju-core/trunk/1.13.1/+download/juju-core_1.13.1.tar.gz"
    sha1 "1c1346378763d6aa469c434c1467b8ea4f8530be"
  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'
  end

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