e0a5c1b4d8
- fixed a bug in ezxml_add_child() that can occur when adding tags out of order - for consistency, ezxml_set_attr() now returns the tag given - added ezxml_move() and supporting functions ezxml_cut() and ezxml_insert() - fixed a bug where parsing an empty file could cause a segfault
22 lines
649 B
Makefile
22 lines
649 B
Makefile
# $NetBSD: Makefile,v 1.9 2013/02/15 19:17:21 shattered Exp $
|
|
|
|
DISTNAME= ezxml-0.8.6
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ezxml/}
|
|
|
|
MAINTAINER= yazzy@yazzy.org
|
|
HOMEPAGE= http://ezxml.sourceforge.net/
|
|
COMMENT= Easy to use C library for parsing XML documents
|
|
|
|
WRKSRC= ${WRKDIR}/ezxml
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
INSTALLATION_DIRS+= lib include share/doc/ezxml
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/libezxml.a ${DESTDIR}${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKSRC}/ezxml.h ${DESTDIR}${PREFIX}/include
|
|
${INSTALL_DATA} ${WRKSRC}/ezxml.txt ${DESTDIR}${PREFIX}/share/doc/ezxml
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|