pkgsrc/sysutils/entr/Makefile
leot 3523d47cec entr: Update sysutils/entr to 3.9
Changes:
3.9
---
 - Fix use of poll(2) to avoid possible busy-loop on Linux
 - Disable keyboard input if reading STDIN fails
2017-10-12 17:56:45 +00:00

32 lines
755 B
Makefile

# $NetBSD: Makefile,v 1.9 2017/10/12 17:56:45 leot Exp $
#
DISTNAME= entr-3.9
CATEGORIES= sysutils
MASTER_SITES= http://entrproject.org/code/
MAINTAINER= leot@NetBSD.org
HOMEPAGE= http://entrproject.org/
COMMENT= Run arbitrary commands when files change
LICENSE= isc AND 2-clause-bsd
WRKSRC= ${WRKDIR}/eradman-entr-332fd96a324a
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
.include "../../mk/bsd.pkg.mk"