2014-02-07 16:09:50 +00:00
|
|
|
class Docker < Formula
|
2014-10-16 19:22:31 +00:00
|
|
|
homepage "https://www.docker.com/"
|
2014-07-25 03:54:20 +00:00
|
|
|
# Boot2docker and docker are generally updated at the same time.
|
|
|
|
# Please update the version of boot2docker too
|
2015-02-10 23:01:39 +00:00
|
|
|
url "https://github.com/docker/docker.git", :tag => "v1.5.0"
|
2014-04-10 05:24:29 +00:00
|
|
|
|
2014-06-13 13:45:11 +00:00
|
|
|
bottle do
|
2015-02-11 12:20:09 +00:00
|
|
|
sha1 "3eccd8879767b3fc95048f7d40a60edb69741892" => :yosemite
|
|
|
|
sha1 "9e65954b48b3feb53ba14aafcd5081a5ede54809" => :mavericks
|
|
|
|
sha1 "5f22268864f33697d6988a49c4c73ddc7368cfa2" => :mountain_lion
|
2014-06-13 13:45:11 +00:00
|
|
|
end
|
|
|
|
|
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"
|
2014-02-07 16:09:50 +00:00
|
|
|
|
|
|
|
system "hack/make.sh", "dynbinary"
|
2014-03-03 12:14:49 +00:00
|
|
|
bin.install "bundles/#{version}/dynbinary/docker-#{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
|