diff options
| author | Daniel Norberg | 2014-06-12 20:20:15 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2014-06-16 13:12:20 +0100 |
| commit | 7789ff04b0b742544eb5406e4d4e0b836d119cfe (patch) | |
| tree | a69ab84672bf86822866729bc58083c506353586 /Library/Formula/docker.rb | |
| parent | d77094dc1f208cbdada8c69b2974931ce1d469a4 (diff) | |
| download | homebrew-7789ff04b0b742544eb5406e4d4e0b836d119cfe.tar.bz2 | |
docker 1.0.0
Compile with CGO_ENABLED=0 to avoid failing on
embedded linux only c code.
Diffstat (limited to 'Library/Formula/docker.rb')
| -rw-r--r-- | Library/Formula/docker.rb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Library/Formula/docker.rb b/Library/Formula/docker.rb index 41852958c..dfe4a34cc 100644 --- a/Library/Formula/docker.rb +++ b/Library/Formula/docker.rb @@ -2,13 +2,7 @@ require "formula" class Docker < Formula homepage "http://docker.io" - url "https://github.com/dotcloud/docker.git", :tag => "v0.11.1" - - bottle do - sha1 "2a97dab4bb3109c57ed99144feb3d2bad6588b2c" => :mavericks - sha1 "0013849c9ab2b85374a944e25c42f974ee986911" => :mountain_lion - sha1 "a9a6021d388f1b004f262977968ed727c4aea022" => :lion - end + url "https://github.com/dotcloud/docker.git", :tag => "v1.0.0" option "without-completions", "Disable bash/zsh completions" @@ -18,6 +12,7 @@ class Docker < Formula ENV["GIT_DIR"] = cached_download/".git" ENV["AUTO_GOPATH"] = "1" ENV["DOCKER_CLIENTONLY"] = "1" + ENV["CGO_ENABLED"] = "0" system "hack/make.sh", "dynbinary" bin.install "bundles/#{version}/dynbinary/docker-#{version}" => "docker" |
