0c3e8f04cd
Closes Homebrew/homebrew#29044. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
34 lines
921 B
Ruby
34 lines
921 B
Ruby
require "formula"
|
|
|
|
class Docker < Formula
|
|
homepage "http://docker.io"
|
|
url "https://github.com/dotcloud/docker.git", :tag => "v0.11.0"
|
|
|
|
bottle do
|
|
sha1 "518c3618d64d15fe6efff6dd65d736a8ccf7b1ea" => :mavericks
|
|
sha1 "e96153136ac8b66b98d05c4141b279bb7e1da49a" => :mountain_lion
|
|
sha1 "2de2692e4b0371e6f912a33c7881dcdb0ed293b9" => :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
|