ok solene@ bfs is a variant of the UNIX find command that operates breadth-first rather than depth-first. It is otherwise intended to be compatible with many versions of find, including: * POSIX find * GNU find * {Free,Open,Net}BSD find * macOS find
24 lines
384 B
Makefile
24 lines
384 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2018/09/26 14:37:51 bcallah Exp $
|
|
|
|
COMMENT = breadth-first version of the UNIX find command
|
|
CATEGORIES = sysutils
|
|
|
|
GH_ACCOUNT = tavianator
|
|
GH_PROJECT = bfs
|
|
GH_TAGNAME = 1.2.4
|
|
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
FAKE_FLAGS = DESTDIR=
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|