homebrew-core/Formula/uriparser.rb
David Höppner adb4577882 New formula uriparser
uriparser is a strictly RFC 3986 compliant URI parsing and handling
library written in C. uriparser is cross-platform, fast, supports
Unicode and is licensed under the New BSD license.
2010-08-30 16:45:52 +02:00

16 lines
469 B
Ruby

require 'formula'
class Uriparser <Formula
url 'http://downloads.sourceforge.net/project/uriparser/Sources/0.7.5/uriparser-0.7.5.tar.gz'
homepage 'http://uriparser.sourceforge.net/'
md5 '459c2786758929b92bfbd0cee25b5aa0'
depends_on 'cpptest'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--disable-doc"
system "make check"
system "make install"
end
end