mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
21 lines
505 B
Makefile
21 lines
505 B
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libflate
|
|
PORTVERSION= 2.0
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= http://flate.dead-inside.org/
|
|
|
|
MAINTAINER= vg@FreeBSD.org
|
|
COMMENT= Template library used to deal with html code in CGI applications
|
|
|
|
PLIST_FILES= lib/${PORTNAME}.a bin/checktpl
|
|
|
|
MAKE_ARGS+= CC=${CC}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/checktpl ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_LIB} ${WRKSRC}/${PORTNAME}.a ${STAGEDIR}${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|