aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdrizzle.rb
blob: 9e811f60d0f0eb98fc1d44f68359dce320bd742c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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.build_head?
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end