129076f465
Changes: 5.1 --- - Detect files moved to or from directories on Linux - Allow detection of directory entries beginning with '.' by specifying '-d' twice - Only reset terminal settings in exit handler if settings were changed
35 lines
864 B
Makefile
35 lines
864 B
Makefile
# $NetBSD: Makefile,v 1.21 2022/01/08 15:41:31 leot Exp $
|
|
#
|
|
|
|
DISTNAME= entr-5.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://eradman.com/entrproject/code/
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://eradman.com/entrproject/
|
|
COMMENT= Run arbitrary commands when files change
|
|
LICENSE= isc AND 2-clause-bsd
|
|
|
|
MAKE_ENV+= MANPREFIX="${PREFIX}/${PKGMANDIR}"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# Needs kqueue(2) or inotify(7)
|
|
.if !empty(OPSYS:M*BSD) || ${OPSYS} == "Bitrig" || ${OPSYS} == "DragonFly"
|
|
MAKE_FILE= Makefile.bsd
|
|
.elif ${OPSYS} == "Darwin"
|
|
MAKE_FILE= Makefile.macos
|
|
.elif ${OPSYS} == "Linux"
|
|
MAKE_FILE= Makefile.linux
|
|
.else
|
|
NOT_FOR_PLATFORM= ${MACHINE_PLATFORM}
|
|
.endif
|
|
|
|
TEST_TARGET= test
|
|
USE_TOOLS+= bash:test
|
|
CHECK_PORTABILITY_SKIP+= system_test.sh
|
|
.if ${PKGSRC_RUN_TEST:tl} == yes
|
|
REPLACE_BASH+= system_test.sh
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|