2014-02-07 16:09:50 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Docker < Formula
|
|
|
|
homepage "http://docker.io"
|
2014-03-03 11:41:45 +00:00
|
|
|
url "https://github.com/dotcloud/docker.git", :tag => "v0.8.1"
|
2014-02-07 16:09:50 +00:00
|
|
|
|
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-09 14:32:00 +00:00
|
|
|
bottle do
|
2014-03-03 12:01:47 +00:00
|
|
|
sha1 "65c07eaf8d721f9270a12a1a129a01edd8ed186f" => :mavericks
|
|
|
|
sha1 "b5de1b29b7db1ea6cd1a321c1f640d5618a8368c" => :mountain_lion
|
|
|
|
sha1 "688cbc6dcbe651fe9e92fb9751bf4b7e9bcd5064" => :lion
|
2014-02-09 14:32:00 +00:00
|
|
|
end
|
|
|
|
|
2014-02-07 16:09:50 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
|
|
|
|
def install
|
2014-02-21 05:41:07 +00:00
|
|
|
ENV["GIT_DIR"] = cached_download/".git"
|
2014-02-10 18:56:33 +00:00
|
|
|
ENV["AUTO_GOPATH"] = "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
|