blob: cd792ee1756963489520552b8f22970a7bb2811f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
require "formula"
class Boot2docker < Formula
homepage "https://github.com/boot2docker/boot2docker-cli"
# Boot2docker and docker are generally updated at the same time.
# Please update the version of docker too
url "https://github.com/boot2docker/boot2docker-cli.git", :tag => "v1.3.1"
head "https://github.com/boot2docker/boot2docker-cli.git", :branch => "master"
bottle do
sha1 "becdb32043b9a40e8251120672d3a637ab5cb476" => :yosemite
sha1 "c7f4216d9049d23ef77c0a91311d8656b9b90d64" => :mavericks
sha1 "17a608549bf7adb4cae2180388a0c83f21dcdee6" => :mountain_lion
end
depends_on "docker" => :recommended
depends_on "go" => :build
def install
(buildpath + "src/github.com/boot2docker/boot2docker-cli").install Dir[buildpath/"*"]
cd "src/github.com/boot2docker/boot2docker-cli" do
ENV["GOPATH"] = buildpath
system "go", "get", "-d"
ENV["GIT_DIR"] = cached_download/".git"
system "make", "goinstall"
end
bin.install "bin/boot2docker-cli" => "boot2docker"
end
test do
system "#{bin}/boot2docker", "version"
end
end
|