2010-02-03 12:43:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libdrizzle < Formula
|
2010-02-03 12:43:59 +00:00
|
|
|
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
|
2010-07-09 19:40:41 +00:00
|
|
|
system "./config/autorun.sh" if ARGV.build_head?
|
2010-02-03 12:43:59 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|