cc40e08ca9
* Improved the default output so it creates multiple formatted lines instead of single very long lines for each hit. Use the new "--singleline" (-S) option to get the original "long line" format. * Removed duplicate "getpass" entry in the ruleset; this didn't hurt anything, but was unnecessary. Thanks to the user who gave me that feedback, wish I'd kept your email address so I could credit you properly :-). * Added a short tutorial to man page. * Fixed initial upper/lower case on many entries in the ruleset. * Allow "--input" as a synonym for "--inputs".
25 lines
658 B
Makefile
25 lines
658 B
Makefile
# $NetBSD: Makefile,v 1.3 2002/09/23 15:19:37 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= flawfinder-1.21
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= http://www.dwheeler.com/flawfinder/
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
HOMEPAGE= http://www.dwheeler.com/flawfinder/
|
|
COMMENT= python program to find flaws in C/C++ programs
|
|
|
|
PYTHON_PATCH_SCRIPTS= flawfinder
|
|
PY_PATCHPLIST= yes
|
|
|
|
NO_CONFIGURE= # defined
|
|
NO_BUILD= # defined
|
|
MAKEFILE= makefile
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/flawfinder ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/flawfinder.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|