ports/sysutils/bfs/Makefile

32 lines
525 B
Makefile
Raw Normal View History

2023-08-16 22:26:55 +00:00
COMMENT = breadth-first version of the UNIX find command
CATEGORIES = sysutils
GH_ACCOUNT = tavianator
GH_PROJECT = bfs
2023-09-18 23:08:50 +00:00
GH_TAGNAME = 3.0.2
2023-08-16 22:26:55 +00:00
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
# BSD
PERMIT_PACKAGE = Yes
WANTLIB += c onig pthread
DEBUG_PACKAGES = ${BUILD_PACKAGES}
2023-09-18 23:08:50 +00:00
# C17
2023-08-16 22:26:55 +00:00
COMPILER = base-clang ports-gcc
LIB_DEPENDS = textproc/oniguruma
USE_GMAKE = Yes
2023-09-18 23:08:50 +00:00
MAKE_FILE = GNUmakefile
2023-08-16 22:26:55 +00:00
2023-09-18 23:08:50 +00:00
FAKE_FLAGS = DESTDIR= MANDIR="${DESTDIR}${PREFIX}/man"
2023-08-16 22:26:55 +00:00
TEST_DEPENDS = shells/bash
TEST_TARGET = check
.include <bsd.port.mk>