aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-02-03 13:43:59 +0100
committerDavid Höppner2010-02-03 13:43:59 +0100
commit6248cefe4c27e2bc1f39c51aa58269f267399ab1 (patch)
treeded35f1f33cfc262cbe2b9bced6de587c99ca364 /Library/Formula
parentc72ff6715baf09b63caa103f0bec97ae98258e4a (diff)
downloadhomebrew-6248cefe4c27e2bc1f39c51aa58269f267399ab1.tar.bz2
New formula libdrizzle
This is the the client and protocol library for the Drizzle project. The server, drizzled, will use this as for protocol library. Client utilities and any new projects that require low-level protocol communication (like proxies).
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libdrizzle.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libdrizzle.rb b/Library/Formula/libdrizzle.rb
new file mode 100644
index 000000000..6503e96f2
--- /dev/null
+++ b/Library/Formula/libdrizzle.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Libdrizzle <Formula
+ head 'bzr://https://launchpad.net/libdrizzle/trunk'
+ url 'http://launchpad.net/libdrizzle/trunk/0.7/+download/libdrizzle-0.7.tar.gz'
+ homepage 'https://launchpad.net/libdrizzle'
+ md5 '9b2f0ed5d9f63d0f0b9253d03c817d55'
+
+ def install
+ system "./config/autorun.sh" if ARGV.include? '--HEAD'
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end