blob: 570444a1b77076ace3fcb35db75e9ab122a5457f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class Beanstalk < Formula
  url 'http://xph.us/dist/beanstalkd/beanstalkd-1.4.6.tar.gz'
  md5 '3dbbb64a6528efaaaa841ea83b30768e'
  homepage 'http://xph.us/software/beanstalkd/'
  depends_on 'libevent'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--with-event=#{HOMEBREW_PREFIX}"
    system "make install"
  end
end
  |