28 lines
681 B
Makefile
28 lines
681 B
Makefile
# $OpenBSD: Makefile,v 1.15 2020/11/30 15:41:56 gonzalo Exp $
|
|
|
|
COMMENT = greytrapping daemon to complement OpenBSD spamd
|
|
|
|
DISTNAME = greyscanner-2.01
|
|
CATEGORIES = mail
|
|
REVISION = 1
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MASTER_SITES = https://github.com/gonzalo-/openbsd-distfiles/raw/main/greyscanner/
|
|
|
|
RUN_DEPENDS = mail/p5-Email-Valid \
|
|
net/p5-Net-DNS
|
|
|
|
NO_BUILD = Yes
|
|
NO_TEST = Yes
|
|
PKG_ARCH = *
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/greyscanner ${PREFIX}/sbin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/greyscanner
|
|
${INSTALL_DATA} ${WRKSRC}/greyscanner.conf ${PREFIX}/share/examples/greyscanner
|
|
${INSTALL_MAN} ${WRKSRC}/greyscanner.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|