mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
95c3088ee6
xml2c reads in an XML file and produces equivalent C source code, suitable for #including in your program. WWW: http://www.acme.com/software/xml2c/ PR: 204191 Submitted by: Neel Chauhan <neel@neelc.org>
27 lines
584 B
Makefile
27 lines
584 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xml2c
|
|
PORTVERSION= 20151019
|
|
CATEGORIES= converters
|
|
MASTER_SITES= http://acme.com/software/xml2c/
|
|
DISTNAME= ${PORTNAME}_19Oct2015
|
|
|
|
MAINTAINER= neel@neelc.org
|
|
COMMENT= Reads in an XML file and produces equivalent C source code
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USE_GNOME= libxml2
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
PLIST_FILES= bin/xml2c man/man1/xml2c.1.gz
|
|
|
|
#MAKEFILE= /dev/null
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/xml2c ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/xml2c.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/xml2c.1
|
|
|
|
.include <bsd.port.mk>
|