2013-09-16 11:06:27 +00:00
|
|
|
class Etcd < Formula
|
2014-07-20 18:47:35 +00:00
|
|
|
homepage "https://github.com/coreos/etcd"
|
2015-03-08 17:24:17 +00:00
|
|
|
url "https://github.com/coreos/etcd/archive/v2.0.4.tar.gz"
|
|
|
|
sha256 "37bba9ef5046df3d3b09789d87ef7e2186a32ceea400a94f3edc1efd10789e53"
|
2014-07-20 18:47:35 +00:00
|
|
|
head "https://github.com/coreos/etcd.git"
|
2013-09-16 11:06:27 +00:00
|
|
|
|
2014-06-14 11:33:16 +00:00
|
|
|
bottle do
|
2015-03-09 13:22:46 +00:00
|
|
|
sha256 "821841848d23eb547ad98612f4e4048a1e47189bc9a18cbf3826ed3c86180510" => :yosemite
|
|
|
|
sha256 "d319db0e1163f7c66606c42f672f5405ddc206b1f5665928d5a1f03469809b9e" => :mavericks
|
|
|
|
sha256 "76ef13aa736e2f9480c99175db429a389c67e825b786291dff3b374fa36121d5" => :mountain_lion
|
2014-06-14 11:33:16 +00:00
|
|
|
end
|
|
|
|
|
2014-07-20 18:47:35 +00:00
|
|
|
depends_on "go" => :build
|
2013-09-16 11:06:27 +00:00
|
|
|
|
|
|
|
def install
|
2014-07-20 18:47:35 +00:00
|
|
|
ENV["GOPATH"] = buildpath
|
2013-09-16 11:06:27 +00:00
|
|
|
system "./build"
|
2014-07-20 18:47:35 +00:00
|
|
|
bin.install "bin/etcd"
|
2015-03-08 17:24:17 +00:00
|
|
|
bin.install "bin/etcdctl"
|
2013-09-16 11:06:27 +00:00
|
|
|
end
|
2014-05-09 21:47:23 +00:00
|
|
|
|
|
|
|
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>KeepAlive</key>
|
|
|
|
<dict>
|
|
|
|
<key>SuccessfulExit</key>
|
|
|
|
<false/>
|
|
|
|
</dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{opt_bin}/etcd</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{var}</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
2013-09-16 11:06:27 +00:00
|
|
|
end
|