homebrew-core/Formula/drizzle.rb
Mark Sonnabaum fc0dc4dcd3 Updated drizzle formula to 2011.03.13.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-17 16:45:56 -07:00

21 lines
548 B
Ruby

require 'formula'
class Drizzle < Formula
url 'http://launchpad.net/drizzle/elliott/2011-03-14/+download/drizzle7-2011.03.13.tar.gz'
homepage 'http://drizzle.org'
md5 'e152edfec45779c0bd34ece707aa022d'
depends_on 'protobuf'
depends_on 'boost'
depends_on 'libevent'
depends_on 'pcre'
depends_on 'intltool'
depends_on 'libgcrypt'
depends_on 'readline'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end