homebrew-core/Formula/docker.rb
BrewTestBot 6c3908c95c docker: update 1.1.0 bottle.
Closes Homebrew/homebrew#30649.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-05 09:14:33 +01:00

34 lines
920 B
Ruby

require "formula"
class Docker < Formula
homepage "http://docker.io"
url "https://github.com/dotcloud/docker.git", :tag => "v1.1.0"
bottle do
sha1 "f53dac0e65bb425aedd1ef196189d8b63a7f6d4a" => :mavericks
sha1 "b31d4d5e8bf01bc50ebcd24f411941d73077961f" => :mountain_lion
sha1 "d3df625e3dbf3d40b2953932a33fbf2be661a075" => :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