blob: b270a315e564c0ec7114318c1a65c9eab9ec83e0 (
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
  | 
require "formula"
class Docker < Formula
  homepage "http://docker.io"
  url "https://github.com/dotcloud/docker.git", :tag => "v0.10.0"
  bottle do
    sha1 "57c927d65003ffa8c399a60fabaf29210ec4850d" => :mavericks
    sha1 "df39b81c702fd14a4d0715b30245dc43e0090ffe" => :mountain_lion
    sha1 "7e792f28fbf1b18b6e758ffff81b4b3754533553" => :lion
  end
  option "without-completions", "Disable bash/zsh completions"
  depends_on "go" => :build
  def install
    ENV["GIT_DIR"] = cached_download/".git"
    ENV["AUTO_GOPATH"] = "1"
    ENV["DOCKER_CLIENTONLY"] = "1"
    system "hack/make.sh", "dynbinary"
    bin.install "bundles/#{version}/dynbinary/docker-#{version}" => "docker"
    if build.with? "completions"
      bash_completion.install "contrib/completion/bash/docker"
      zsh_completion.install "contrib/completion/zsh/_docker"
    end
  end
  test do
    system "#{bin}/docker", "--version"
  end
end
  |