da07c2dfa2
Closes Homebrew/homebrew#33225. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
36 lines
1 KiB
Ruby
36 lines
1 KiB
Ruby
require "formula"
|
|
|
|
class Docker < Formula
|
|
homepage "https://www.docker.com/"
|
|
# Boot2docker and docker are generally updated at the same time.
|
|
# Please update the version of boot2docker too
|
|
url "https://github.com/docker/docker.git", :tag => "v1.3.0"
|
|
|
|
bottle do
|
|
sha1 "7563b28df830baa880731b9448e88b99dcb68420" => :mavericks
|
|
sha1 "4ecba686ae851cb091bec58aebab1c092a5edfbf" => :mountain_lion
|
|
sha1 "697f44626b6dd3152fb23d6da8272cb2359a6845" => :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
|