Files

36 lines
885 B
Makefile
Raw Permalink Normal View History

PORTNAME= devd-mount
2024-11-15 06:33:59 -06:00
DISTVERSION= 0.2.0
PORTREVISION= 1
CATEGORIES= sysutils
MAINTAINER= jwb@FreeBSD.org
COMMENT= Automount tool utilizing devd notifications
WWW= https://github.com/outpaddling/devd-mount
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
CONFLICTS_INSTALL= automount # Competing devd rules
USE_GITHUB= yes
GH_ACCOUNT= outpaddling
NO_BUILD= yes
NO_ARCH= yes
PLIST_FILES= sbin/devd-mount \
etc/devd/devd-mount.conf \
"@sample etc/devd-mount.conf.sample" \
2024-01-11 14:59:09 +01:00
share/man/man8/devd-mount.8.gz
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/devd-mount ${STAGEDIR}${PREFIX}/sbin
${INSTALL_DATA} ${WRKSRC}/devd.conf \
${STAGEDIR}${PREFIX}/etc/devd/devd-mount.conf
${INSTALL_DATA} ${WRKSRC}/devd-mount.conf \
${STAGEDIR}${PREFIX}/etc/devd-mount.conf.sample
${INSTALL_MAN} ${WRKSRC}/Man/devd-mount.8 \
2024-01-11 14:59:09 +01:00
${STAGEDIR}${PREFIX}/share/man/man8
.include <bsd.port.mk>