forked from Lainports/freebsd-ports
- Added a new -status option that displays the search progress in a bar at the bottom of the terminal - Fixed an optimizer bug introduced in v2.0 that affected some combinations of -user/-group and -nouser/-nogroup Changelog: https://github.com/tavianator/bfs/releases/tag/2.1 PR: 251297 Submitted by: Dries Michiels <driesm.michiels@gmail.com> (new maintainer) Approved by: arrowd, tcberner (mentors, implicit)
29 lines
615 B
Makefile
29 lines
615 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bfs
|
|
DISTVERSION= 2.1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= driesm.michiels@gmail.com
|
|
COMMENT= Breadth-first version of the UNIX find command
|
|
|
|
LICENSE= BSD0CLAUSE
|
|
LICENSE_NAME= BSD Zero Clause License
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
TEST_DEPENDS= bash:shells/bash
|
|
|
|
USES= compiler:c11 gmake shebangfix
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tavianator
|
|
|
|
SHEBANG_FILES= tests.sh tests/*.sh
|
|
TEST_TARGET= check
|
|
PLIST_FILES= bin/bfs \
|
|
share/man/man1/bfs.1.gz
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/bfs
|
|
|
|
.include <bsd.port.mk>
|