blob: 72009d19a2a9f6ec6a5b35e0b3bd5e44fcad31fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Natacha Porte <natbsd@instinctive.eu>
# $FreeBSD$
PORTNAME= filewatcherd
PORTVERSION= 1.0b1
DISTNAME= ${PORTNAME}-${GH_TAGNAME}
CATEGORIES= sysutils
MAINTAINER= natbsd@instinctive.eu
COMMENT= Daemon that watches files and runs commands when they change
LICENSE= BSD
USE_GITHUB= yes
GH_ACCOUNT= faelys
GH_COMMIT= a2b8081
GH_TAGNAME= 1.0-beta1
USE_RC_SUBR= filewatcherd
SUB_FILES= pkg-message
PLIST_FILES= sbin/filewatcherd etc/watchtab.sample
NO_STAGE= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/filewatcherd ${PREFIX}/sbin
${INSTALL_DATA} ${FILESDIR}/watchtab.sample ${PREFIX}/etc
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|