homebrew-core/Formula/docker.rb

37 lines
1.0 KiB
Ruby
Raw Normal View History

require "formula"
class Docker < Formula
2014-10-16 19:22:31 +00:00
homepage "https://www.docker.com/"
# Boot2docker and docker are generally updated at the same time.
# Please update the version of boot2docker too
url "https://github.com/docker/docker.git", :tag => "v1.3.1"
bottle do
2014-11-02 22:15:55 +00:00
sha1 "bb86bca796dda4c816951ce063f6c5f7eb506777" => :yosemite
sha1 "3ba79c3636d5d68b429cd3324d7c4af9ad48574f" => :mavericks
sha1 "ae630709885fbd929bd41fae9a1599972a7fafd2" => :mountain_lion
end
2014-02-13 20:17:06 +00:00
option "without-completions", "Disable bash/zsh completions"
depends_on "go" => :build
def install
ENV["GIT_DIR"] = cached_download/".git"
ENV["AUTO_GOPATH"] = "1"
2014-03-11 14:51:29 +00:00
ENV["DOCKER_CLIENTONLY"] = "1"
system "hack/make.sh", "dynbinary"
bin.install "bundles/#{version}/dynbinary/docker-#{version}" => "docker"
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"
end
end
test do
system "#{bin}/docker", "--version"
end
end