homebrew-core/Formula/drizzle.rb

25 lines
626 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Drizzle < Formula
homepage 'http://drizzle.org'
url 'https://launchpad.net/drizzle/7.1/7.1.36/+download/drizzle-7.1.36-stable.tar.gz'
sha1 '6ce317d6a6b0560e75d5bcf44af2e278443cfbfe'
2013-06-14 19:09:06 +00:00
depends_on :macos => :lion
2013-02-03 20:39:40 +00:00
depends_on 'intltool' => :build
# https://github.com/mxcl/homebrew/issues/14289
depends_on 'boost149'
2013-02-03 20:39:40 +00:00
depends_on 'protobuf'
depends_on 'libevent'
depends_on 'pcre'
depends_on 'libgcrypt'
depends_on 'readline'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end