55bebe1a61
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. ok sthen@ benoit@
31 lines
639 B
Makefile
31 lines
639 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/12/24 20:43:25 bentley Exp $
|
|
|
|
COMMENT = URI parsing library
|
|
|
|
DISTNAME = uriparser-0.8.0
|
|
|
|
SHARED_LIBS += uriparser 0.0 # 1.15
|
|
|
|
CATEGORIES = www
|
|
|
|
HOMEPAGE = http://uriparser.sourceforge.net/
|
|
|
|
# BSD 3-clause
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c
|
|
|
|
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=uriparser/}
|
|
EXTRACT_SUFX = .tar.bz2
|
|
|
|
# cpptest is only used during tests but configure requires it
|
|
BUILD_DEPENDS = devel/cpptest
|
|
TEST_DEPENDS = devel/cpptest
|
|
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --disable-doc
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include"
|
|
|
|
.include <bsd.port.mk>
|