29 lines
571 B
Makefile
29 lines
571 B
Makefile
# $OpenBSD: Makefile,v 1.4 2013/03/11 20:59:05 sthen Exp $
|
|
|
|
COMMENT = run arbitrary commands when files change
|
|
|
|
DISTNAME = entr-1.4
|
|
REVISION = 0
|
|
REV = b90825a157a4
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://bitbucket.org/eradman/entr/
|
|
|
|
MAINTAINER = Eric Radman <ericshane@eradman.com>
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MASTER_SITES = http://static.eradman.com/code/ \
|
|
https://bitbucket.org/eradman/entr/get/
|
|
|
|
MAKE_FLAGS = CC="${CC}" LDFLAGS="${LDFLAGS} -pthread"
|
|
WRKDIST = ${WRKDIR}/eradman-entr-${REV}
|
|
|
|
TEST_TARGET = test
|
|
|
|
.include <bsd.port.mk>
|