c18c64f1e9
changelog: * Notable change: nq now creates files with permissions 0666 and subject to your umask (like most programs that create new files). If your queue needs to remain secret, prohibit access to the whole directory. * Support for nq in a multi-user environment: having read permission for queued tasks in the directory is enough to wait for them. * Makefile: support INSTALL variable. * Bugfix: create $NQDONEDIR properly
23 lines
341 B
Makefile
23 lines
341 B
Makefile
COMMENT = command line queue utility
|
|
|
|
GH_ACCOUNT = leahneukirchen
|
|
GH_PROJECT = nq
|
|
GH_TAGNAME = v0.5
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
MAINTAINER = Omar Polo <op@omarpolo.com>
|
|
|
|
# Public domain
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = c
|
|
|
|
MAKE_FLAGS = CC=${CC} \
|
|
CFLAGS="${CFLAGS}"
|
|
FAKE_FLAGS = MANDIR=${PREFIX}/man
|
|
|
|
TEST_TARGET = check
|
|
|
|
.include <bsd.port.mk>
|