mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
24 lines
549 B
Makefile
24 lines
549 B
Makefile
# Created by: Kris Kennaway <kris@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pscan
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= http://deployingradius.com/pscan/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= sylvio@FreeBSD.org
|
|
COMMENT= Security C code scanner for misuse of format strings
|
|
|
|
ALL_TARGET= #empty
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
PLIST_FILES= bin/pscan bin/find_formats
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pscan ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/find_formats.sh \
|
|
${STAGEDIR}${PREFIX}/bin/find_formats
|
|
|
|
.include <bsd.port.mk>
|