mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
c3ea648ca6
Approved by: portmgr (blanket)
28 lines
619 B
Makefile
28 lines
619 B
Makefile
PORTNAME= masscan
|
|
DISTVERSION= 1.3.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= taguchi.ch@gmail.com
|
|
COMMENT= Very fast port scanner
|
|
WWW= https://github.com/robertdavidgraham/masscan
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= robertdavidgraham
|
|
MAKE_ARGS= SYS=freebsd CC="${CC}" CFLAGS="${CFLAGS}"
|
|
CFLAGS+= -Wno-format
|
|
|
|
PLIST_FILES= bin/masscan share/man/man8/masscan.8.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/masscan ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/masscan.8 ${STAGEDIR}${PREFIX}/share/man/man8
|
|
|
|
do-test:
|
|
${WRKSRC}/bin/masscan --selftest
|
|
|
|
.include <bsd.port.mk>
|