homebrew-core/Formula/etcd.rb

48 lines
1.2 KiB
Ruby
Raw Normal View History

2014-07-20 18:47:35 +00:00
require "formula"
class Etcd < Formula
2014-07-20 18:47:35 +00:00
homepage "https://github.com/coreos/etcd"
url "https://github.com/coreos/etcd/archive/v2.0.0.tar.gz"
sha1 "56c1334c28d1013cfeee725ec864762cf8a13779"
2014-07-20 18:47:35 +00:00
head "https://github.com/coreos/etcd.git"
2014-06-14 11:33:16 +00:00
bottle do
2015-02-08 04:36:35 +00:00
sha1 "ce4c0100d8b80cd1ccf654d21561c1f0124fdddb" => :yosemite
sha1 "1296fb789c837c58149ff01794f4bab6509aa584" => :mavericks
sha1 "ab9d979ce7867cf64c027bf915689ec6dd8bfdb3" => :mountain_lion
2014-06-14 11:33:16 +00:00
end
2014-07-20 18:47:35 +00:00
depends_on "go" => :build
def install
2014-07-20 18:47:35 +00:00
ENV["GOPATH"] = buildpath
system "./build"
2014-07-20 18:47:35 +00:00
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