opnsense-ports/textproc/xmlindent/Makefile
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

28 lines
609 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= xmlindent
PORTVERSION= 0.2.17
PORTREVISION= 1
CATEGORIES= textproc
MASTER_SITES= SF
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= XML stream reformatter
LICENSE= GPLv2
SOURCES= error.c indent.c buffer.c main.c
PLIST_FILES= bin/xmlindent man/man1/xmlindent.1.gz
do-build:
@cd ${WRKSRC}; flex xmlindent.yy
${CC} ${CFLAGS} ${SOURCES:C/(.*)/${WRKSRC}\/\1/} \
-o ${WRKSRC}/${PORTNAME} -lfl
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
.include <bsd.port.mk>