35 lines
776 B
Makefile
35 lines
776 B
Makefile
# $OpenBSD: Makefile,v 1.3 2010/11/19 07:23:05 espie Exp $
|
|
|
|
COMMENT= generate ScamNailer spear phishing database in ClamAV format
|
|
|
|
DISTNAME= ClamNailer-1.01
|
|
PKGNAME= ${DISTNAME:L}
|
|
EXTRACT_SUFX= .gz
|
|
|
|
CATEGORIES= mail security
|
|
|
|
HOMEPAGE= http://www.scamnailer.info/
|
|
|
|
# Public Domain
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.scamnailer.info/files/contrib/
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
RUN_DEPENDS= security/clamav
|
|
|
|
WRKDIST= ${WRKDIR}
|
|
|
|
# fix MS-DOS line-endings, output to a file with non-version-dependent name
|
|
post-extract:
|
|
perl -pi -e 's/\r$$//' < ${WRKSRC}/${DISTNAME} > ${WRKSRC}/clamnailer
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/clamnailer ${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|