aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/uriparser.rb
blob: e9fbf89af326a53f2a5628afe5fb42b9cee66b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Uriparser < Formula
  homepage 'http://uriparser.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/uriparser/Sources/0.7.9/uriparser-0.7.9.tar.bz2'
  sha1 'c02d1db3c4e132863b6fc4e4f5e08cec535089d1'

  depends_on 'pkg-config' => :build
  depends_on 'cpptest'

  conflicts_with 'libkml', :because => 'both install `liburiparser.dylib`'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--disable-doc"
    system "make check"
    system "make install"
  end
end