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).
This commit is contained in:
parent
3ca1cb0255
commit
ff0a090f6c
1 changed files with 14 additions and 0 deletions
14
Formula/libdrizzle.rb
Normal file
14
Formula/libdrizzle.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue