8d82698e88
Closes Homebrew/homebrew#29098. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
41 lines
1 KiB
Ruby
41 lines
1 KiB
Ruby
require 'formula'
|
|
|
|
class Etcd < Formula
|
|
homepage 'https://github.com/coreos/etcd'
|
|
url 'https://github.com/coreos/etcd/archive/v0.3.0.tar.gz'
|
|
sha1 '0f191070268f7c87ca044ad23179995b9290e3c0'
|
|
head 'https://github.com/coreos/etcd.git'
|
|
|
|
depends_on 'go' => :build
|
|
|
|
def install
|
|
ENV['GOPATH'] = buildpath
|
|
system "./build"
|
|
bin.install 'bin/etcd'
|
|
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>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
|
|
end
|