require "formula" class Docker < Formula homepage "http://docker.io" url "https://github.com/dotcloud/docker.git", :tag => "v1.0.1" bottle do sha1 "24d4e994ff6cdf993c2d1acfde1f8d747bac718c" => :mavericks sha1 "b137435fceebd47b003a30ee6d64aee30c03e0c9" => :mountain_lion sha1 "6bb718d4a0aa8fa831ea27be5c3bfbca413c2500" => :lion end option "without-completions", "Disable bash/zsh completions" depends_on "go" => :build def install ENV["GIT_DIR"] = cached_download/".git" ENV["AUTO_GOPATH"] = "1" ENV["DOCKER_CLIENTONLY"] = "1" system "hack/make.sh", "dynbinary" bin.install "bundles/#{version}/dynbinary/docker-#{version}" => "docker" 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