mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 23:44:01 +02:00
33 lines
540 B
Makefile
33 lines
540 B
Makefile
COMMENT = run arbitrary commands when files change
|
|
|
|
DISTNAME = entr-5.7
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://eradman.com/entrproject/
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB += c
|
|
|
|
SITES = ${HOMEPAGE}code/
|
|
|
|
MAKE_FILE = Makefile.bsd
|
|
MAKE_FLAGS = CC="${CC}" \
|
|
LDFLAGS="${LDFLAGS}"
|
|
FAKE_FLAGS = DESTDIR=""
|
|
|
|
TEST_DEPENDS = devel/git \
|
|
editors/vim
|
|
|
|
# Scripts are executed from there, default /tmp may be mounted "noexec".
|
|
TEST_ENV = TMPDIR=${WRKDIR}
|
|
|
|
TEST_TARGET = test check
|
|
|
|
PORTHOME = ${WRKDIR}
|
|
|
|
.include <bsd.port.mk>
|