freebsd-ports/textproc/rapidxml/Makefile
Dmitry Marakasov 30bf2a4a63 RapidXml is an attempt to create the fastest XML parser possible,
while retaining useability, portability and reasonable W3C
compatibility. It is an in-situ parser written in modern C++, with
parsing speed approaching that of strlen function executed on the
same data.

RapidXml has been around since 2006, and is being used by lots of
people. HTC uses it in some of its mobile phones.

If you are looking for a stable and fast parser, look no further.
Integration with your project will be trivial, because entire library
is contained in a single header file, and requires no building or
configuration.

WWW: http://rapidxml.sourceforge.net/
2014-05-13 23:01:26 +00:00

29 lines
664 B
Makefile

# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
# $FreeBSD$
PORTNAME= rapidxml
PORTVERSION= 1.13
CATEGORIES= textproc
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION}
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Fast C++ library for parsing XML
LICENSE= BSL
USES= zip
NO_BUILD= yes
PLIST_FILES= include/rapidxml.hpp \
include/rapidxml_iterators.hpp \
include/rapidxml_print.hpp \
include/rapidxml_utils.hpp
PORTDOCS= *
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_DATA} ${WRKSRC}/*.hpp ${STAGEDIR}${PREFIX}/include
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/manual.html ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>