fwa - simple file change notifier keeping unix philosophy in mind. It is intended to be a clean and simple application to watch file changes on systems using kqueue. It does not execute any commands, just prints out the changed file's name. To handle the events, read fwa's output and act as you wish.
23 lines
454 B
Makefile
23 lines
454 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2015/12/11 00:42:36 jturner Exp $
|
|
|
|
COMMENT = simple file watcher utility for OpenBSD
|
|
DISTNAME = fwa-0.1
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = http://github.com/peterhajdu/fwa
|
|
|
|
MAINTAINER = Peter Hajdu <peter.ferenc.hajdu@gmail.com>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c
|
|
|
|
GH_ACCOUNT = peterhajdu
|
|
GH_PROJECT = fwa
|
|
GH_COMMIT = ce8f590963fdf9e3f5986efb70d68c1918262d86
|
|
|
|
FAKE_FLAGS = DESTDIR=""
|
|
|
|
.include <bsd.port.mk>
|