aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/glide.rb
blob: 5b2340f0a6ce66240909833bb8ed331571c954a2 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require "formula"
require "language/go"

class Glide < Formula
  homepage "https://github.com/Masterminds/glide"
  url "https://github.com/Masterminds/glide/archive/0.2.0.tar.gz"
  sha1 "a01fc0a56cfcb9070af2e8bbca35da81310b0b21"

  bottle do
    sha1 "dea3d205ecbfa38f7cfe5e2b79c5ab12af462df9" => :mavericks
    sha1 "d622cfb237b2e26a63a923f00c7d0af639974219" => :mountain_lion
    sha1 "7afcc2e6b089b38d8ed38979621fceb457df0cfa" => :lion
  end

  depends_on "go" => :build

  go_resource "github.com/kylelemons/go-gypsy" do
    url "https://github.com/kylelemons/go-gypsy.git",
      :revision => "0ddb27ce74ade2ca988ec85587d636e10312dfc6"
  end

  go_resource "github.com/Masterminds/cookoo" do
    url "https://github.com/Masterminds/cookoo.git",
      :revision => "b85ae3d2668c9a4e99419bd98ea9803926a1e306"
  end

  go_resource "github.com/codegangsta/cli" do
    url "https://github.com/codegangsta/cli.git",
      :revision => "f7ebb761e83e21225d1d8954fde853bf8edd46c4"
  end

  def install
    (buildpath + "src/github.com/Masterminds/glide").install "glide.go", "cmd"

    ENV["GOPATH"] = buildpath
    Language::Go.stage_deps resources, buildpath/"src"

    system "go", "build", "-o", "glide", "-ldflags", "-X main.version 0.2.0", "#{buildpath}/src/github.com/Masterminds/glide/glide.go"
    bin.install "glide"
  end

  test do
    version = pipe_output("#{bin}/glide --version")
    assert_match /0.2.0/, version
  end
end