2014-02-07 16:09:50 +00:00
|
|
|
class Docker < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Pack, ship and run any application as a lightweight container"
|
2014-10-16 19:22:31 +00:00
|
|
|
homepage "https://www.docker.com/"
|
2015-09-10 22:13:29 +00:00
|
|
|
url "https://github.com/docker/docker.git", :tag => "v1.8.2",
|
|
|
|
:revision => "0a8c2e3717cb3a6fe4e8cb10243cb06473052541"
|
2015-06-28 00:50:12 +00:00
|
|
|
head "https://github.com/docker/docker.git"
|
2014-04-10 05:24:29 +00:00
|
|
|
|
2014-06-13 13:45:11 +00:00
|
|
|
bottle do
|
2015-09-13 08:52:38 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "11749ecc9059b44e13dd763533d3101f06d5d9bb14f4fdd20bac850fc0afd0ec" => :el_capitan
|
2015-09-11 01:53:11 +00:00
|
|
|
sha256 "908a8ef86f628bbc53e32b701d6ab88cea1e32d52621590873fe385fa139a63f" => :yosemite
|
|
|
|
sha256 "5fb99137428989886c168299aa553633884e2898ae17a1d1514d9875e6980417" => :mavericks
|
|
|
|
sha256 "a78aa507edd9d8483ed66b6fc7c9ec9e4f7ed20f89c62c9401b8c65ec654c9fc" => :mountain_lion
|
2014-06-13 13:45:11 +00:00
|
|
|
end
|
|
|
|
|
2015-06-27 06:25:20 +00:00
|
|
|
option "with-experimental", "Enable experimental features"
|
2014-02-13 20:17:06 +00:00
|
|
|
option "without-completions", "Disable bash/zsh completions"
|
2014-02-12 12:10:52 +00:00
|
|
|
|
2014-02-07 16:09:50 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
|
|
|
|
def install
|
2014-02-10 18:56:33 +00:00
|
|
|
ENV["AUTO_GOPATH"] = "1"
|
2014-03-11 14:51:29 +00:00
|
|
|
ENV["DOCKER_CLIENTONLY"] = "1"
|
2015-06-27 06:25:20 +00:00
|
|
|
ENV["DOCKER_EXPERIMENTAL"] = "1" if build.with? "experimental"
|
2014-02-07 16:09:50 +00:00
|
|
|
|
|
|
|
system "hack/make.sh", "dynbinary"
|
2015-06-28 00:50:12 +00:00
|
|
|
|
|
|
|
build_version = build.head? ? File.read("VERSION").chomp : version
|
|
|
|
bin.install "bundles/#{build_version}/dynbinary/docker-#{build_version}" => "docker"
|
2014-02-12 12:10:52 +00:00
|
|
|
|
2014-02-13 20:17:06 +00:00
|
|
|
if build.with? "completions"
|
|
|
|
bash_completion.install "contrib/completion/bash/docker"
|
|
|
|
zsh_completion.install "contrib/completion/zsh/_docker"
|
2014-02-12 12:10:52 +00:00
|
|
|
end
|
2014-02-07 16:09:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/docker", "--version"
|
|
|
|
end
|
|
|
|
end
|