Beanstalk Formula
Beanstalk is a simple, fast workqueue service. Its interface is generic, but was originally designed for reducing the latency of page views in high-volume web applications by running time-consuming tasks asynchronously. Signed-off-by: Max Howell <max@methylblue.com> I changed it to beanstalk.rb as that's how they refer to it in general.
This commit is contained in:
parent
6ace63865b
commit
8b8636e6bd
1 changed files with 16 additions and 0 deletions
16
Formula/beanstalk.rb
Normal file
16
Formula/beanstalk.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'brewkit'
|
||||
|
||||
# TODO alias: beanstalkd
|
||||
|
||||
class Beanstalk <Formula
|
||||
url 'http://xph.us/dist/beanstalkd/beanstalkd-1.4.tar.gz'
|
||||
md5 'eea47c86c722c4448087fb28be7357cd'
|
||||
homepage 'http://xph.us/software/beanstalkd/'
|
||||
|
||||
depends_on 'libevent'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue