8ced82a6ef
Filesys::Notify::Simple is a simple but unified interface to get notifications of changes to a given filesystem path. It utilizes inotify2 on Linux and fsevents on OS X if they're installed, with a fallback to the full directory scan if they're not available. (note from importer: it could use a kqueue/libevent backend instead of a gross full scan every 2 secs, which is not even configurable :) From Abel Abraham Camarillo Ojeda on ports@
19 lines
437 B
Makefile
19 lines
437 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/11 09:41:40 landry Exp $
|
|
|
|
COMMENT = simple and dumb file system watcher
|
|
|
|
MODULES = cpan
|
|
DISTNAME = Filesys-Notify-Simple-0.06
|
|
CATEGORIES = sysutils
|
|
MAINTAINER = Abel Abraham Camarillo Ojeda <acamari@verlet.org>
|
|
|
|
BUILD_DEPENDS = devel/p5-Test-SharedFork
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
.include <bsd.port.mk>
|