aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hub.rb
blob: f53387695a3a4126bf2a25e3b3ffbe81d592db0a (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
class Hub < Formula
  homepage "http://hub.github.com/"
  url "https://github.com/github/hub/archive/v1.12.4.tar.gz"
  sha1 "25135167108cd777ba6ec2dd5a9a25e248d98d4b"

  head do
    url "https://github.com/github/hub.git"
    depends_on "go" => :build
  end

  devel do
    url "https://github.com/github/hub/archive/v2.2.0-rc1.tar.gz"
    sha1 "029d154ce0f9c4999e4dd6ef23eab5e411370c4f"
    version "2.2.0-rc1"

    depends_on "go" => :build
  end

  option "without-completions", "Disable bash/zsh completions"

  def install
    if build.head? || build.devel?
      ENV["GIT_DIR"] = cached_download/".git"
      system "script/build"
      bin.install "hub"
      man1.install Dir["man/*"]
    else
      rake "install", "prefix=#{prefix}"
    end

    if build.with? "completions"
      bash_completion.install "etc/hub.bash_completion.sh"
      zsh_completion.install "etc/hub.zsh_completion" => "_hub"
    end
  end

  test do
    HOMEBREW_REPOSITORY.cd do
      assert_equal "bin/brew", shell_output("#{bin}/hub ls-files -- bin").strip
    end
  end
end