mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
28a776d857
Approved by: eadler, osa, rm (mentors, implicit)
25 lines
538 B
Makefile
25 lines
538 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}
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/checktpl ${PREFIX}/bin/
|
|
@${INSTALL_LIB} ${WRKSRC}/${PORTNAME}.a ${PREFIX}/lib/
|
|
|
|
.include <bsd.port.post.mk>
|