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/"
|
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-07-15 10:40:58 +00:00
|
|
|
url "https://github.com/docker/docker.git", :tag => "v1.7.1",
|
2015-08-03 12:55:31 +00:00
|
|
|
:revision => "786b29d4db80a6175e72b47a794ee044918ba734"
|
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-02-20 15:36:44 +00:00
|
|
|
cellar :any
|
2015-07-15 10:48:29 +00:00
|
|
|
sha256 "4a149ad01f976c8cd9d51aa56f3cc02281ba7990f80aa23f4e50fabcde1938fb" => :yosemite
|
|
|
|
sha256 "cc07ad5c81a97180a4f17e4d9a7607440110bc3cf9955f916de4e281c1293cf1" => :mavericks
|
|
|
|
sha256 "ea75c3fd9d1c3a2c8fb6194b7c20352ec63f17c06ab9243667e49b88154a9e7a" => :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
|