20c93a8203
entr - a utility for running arbitrary commands when files change. Uses kqueue(2) to avoid polling. Reads a list of files provided on STDIN and runs the supplied command if any of them are modified.
29 lines
594 B
Makefile
29 lines
594 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/04/12 14:55:47 sthen Exp $
|
|
|
|
COMMENT = run arbitrary commands when files change
|
|
|
|
DISTNAME = entr-1.0
|
|
REV = d0f7f616c4b1
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://bitbucket.org/eradman/entr/
|
|
|
|
MAINTAINER = Eric Radman <ericshane@eradman.com>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://static.eradman.com/code/ \
|
|
https://bitbucket.org/eradman/entr/get/
|
|
|
|
MAKE_FLAGS = CC="${CC}"
|
|
WRKDIST = ${WRKDIR}/eradman-entr-${REV}
|
|
|
|
REGRESS_TARGET = test
|
|
|
|
.include <bsd.port.mk>
|