2011-03-10 05:11:03 +00:00
|
|
|
class Beanstalk < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Generic work queue originally designed to reduce web latency"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://kr.github.io/beanstalkd/"
|
2014-08-21 07:24:21 +00:00
|
|
|
url "https://github.com/kr/beanstalkd/archive/v1.10.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "923b1e195e168c2a91adcc75371231c26dcf23868ed3e0403cd4b1d662a52d59"
|
2009-10-06 20:47:30 +00:00
|
|
|
|
2014-08-21 08:13:25 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "054320dc87c106976408f6bf195a87244635bb05" => :mavericks
|
|
|
|
sha1 "df0173105d8b03f21e88a38f0c0b787a9d06023b" => :mountain_lion
|
|
|
|
sha1 "608a644891b4648750760a5fb70eaecaba130d2b" => :lion
|
|
|
|
end
|
|
|
|
|
2009-10-06 20:47:30 +00:00
|
|
|
def install
|
2012-03-15 00:57:44 +00:00
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
2009-10-06 20:47:30 +00:00
|
|
|
end
|
2012-03-02 18:33:19 +00:00
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
plist_options :manual => "beanstalkd"
|
2012-03-02 18:33:19 +00:00
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
def plist; <<-EOS.undent
|
2012-03-02 18:33:19 +00:00
|
|
|
<?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>
|
|
|
|
<true/>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2014-03-06 05:28:31 +00:00
|
|
|
<string>#{opt_bin}/beanstalkd</string>
|
2012-03-02 18:33:19 +00:00
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{var}</string>
|
|
|
|
<key>StandardErrorPath</key>
|
|
|
|
<string>#{var}/log/beanstalkd.log</string>
|
|
|
|
<key>StandardOutPath</key>
|
|
|
|
<string>#{var}/log/beanstalkd.log</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
2012-11-25 15:06:41 +00:00
|
|
|
EOS
|
2012-03-02 18:33:19 +00:00
|
|
|
end
|
2009-10-06 20:47:30 +00:00
|
|
|
end
|