forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boot2docker141.rb
51 lines (43 loc) · 1.42 KB
/
boot2docker141.rb
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class Boot2docker141 < Formula
homepage "https://github.com/boot2docker/boot2docker-cli"
url "https://github.com/boot2docker/boot2docker-cli.git", :tag => "v1.4.1"
head "https://github.com/boot2docker/boot2docker-cli.git"
bottle do
sha1 "ad01226489b8973588e93ed7584e6cf4e86493bd" => :yosemite
sha1 "952605852a330ebe60ea41aa723c7dd8822105f6" => :mavericks
sha1 "60b8e61e5df4eda554e81a5fbf221c81afb12f13" => :mountain_lion
end
depends_on "docker141" => :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
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/boot2docker</string>
<string>up</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
system "#{bin}/boot2docker", "version"
end
end