homebrew-core/Formula/docker.rb
2016-04-27 17:22:14 +01:00

47 lines
1.5 KiB
Ruby

class Docker < Formula
desc "Pack, ship and run any application as a lightweight container"
homepage "https://www.docker.com/"
url "https://github.com/docker/docker.git",
:tag => "v1.11.1",
:revision => "5604cbed50d51c4039b1abcb1cf87c4e01bce924"
head "https://github.com/docker/docker.git"
bottle do
cellar :any_skip_relocation
sha256 "c81d39395038240d4b702b404d63d5b9a05468c457dae1a0ab625a730387a310" => :el_capitan
sha256 "4070092194a4f57c139bcc1866f4ba00ec58a1fd402e1e7de3c9b702f1a251e5" => :yosemite
sha256 "715c83f20a2df7f87fb85282178a642ad3e9c0c83a81ad34406de626fd63bde8" => :mavericks
end
option "with-experimental", "Enable experimental features"
option "without-completions", "Disable bash/zsh completions"
depends_on "go" => :build
if build.with? "experimental"
depends_on "libtool" => :run
depends_on "yubico-piv-tool" => :recommended
end
def install
ENV["AUTO_GOPATH"] = "1"
ENV["DOCKER_CLIENTONLY"] = "1"
ENV["DOCKER_EXPERIMENTAL"] = "1" if build.with? "experimental"
system "hack/make.sh", "dynbinary"
build_version = build.head? ? File.read("VERSION").chomp : version
bin.install "bundles/#{build_version}/dynbinary/docker-#{build_version}" => "docker"
if build.with? "completions"
bash_completion.install "contrib/completion/bash/docker"
fish_completion.install "contrib/completion/fish/docker.fish"
zsh_completion.install "contrib/completion/zsh/_docker"
end
end
test do
system "#{bin}/docker", "--version"
end
end