2014-07-20 18:47:35 +00:00
|
|
|
require "formula"
|
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"
|
2014-08-20 05:38:07 +00:00
|
|
|
url "https://github.com/coreos/etcd/archive/v0.4.6.tar.gz"
|
|
|
|
sha1 "80b405fd01527eea6668fde0186ca6b119c1185c"
|
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
|
2014-08-20 05:48:10 +00:00
|
|
|
sha1 "dd7aff45b8fb94304047015343d03d692f7a991f" => :mavericks
|
|
|
|
sha1 "e548cb1d29e4d0b5a78a6cd9e30034fb669e8c5a" => :mountain_lion
|
|
|
|
sha1 "bc35b7c3315e899f4e6b96c9db7615de03c04dbd" => :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"
|
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
|