30 lines
697 B
Makefile
30 lines
697 B
Makefile
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
|
|
WWW= https://rapidxml.sourceforge.net/
|
|
|
|
LICENSE= BSL
|
|
LICENSE_FILE= ${WRKSRC}/license.txt
|
|
|
|
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
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/manual.html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|