af6805ea15
-fix :previous_match not jumping over indirect matches - Fix #377 -fix typing a prefixed pattern then emptying it while keeping the prefix doesn't remove filtering - Fix #379 -fix shifted matching chars highlighting with regex patterns when showing icons - Fix #376
26 lines
739 B
Makefile
26 lines
739 B
Makefile
# $NetBSD: Makefile,v 1.18 2021/05/01 14:37:19 pin Exp $
|
|
|
|
DISTNAME= broot-1.3.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=Canop/}
|
|
GITHUB_PROJECT= broot
|
|
GITHUB_TAG= 1a2014aa856e95176e4ad16497c81ad76ab2b71c
|
|
|
|
MAINTAINER= pin@NetBSD.org
|
|
HOMEPAGE= https://dystroy.org/broot/
|
|
COMMENT= New way to see and navigate directory trees
|
|
LICENSE= mit
|
|
|
|
.include "cargo-depends.mk"
|
|
|
|
USE_LANGUAGES+= c # rust, but needs a toolchain to link
|
|
USE_TOOLS+= pkg-config
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/target/release/broot ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/man/page ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/broot.1
|
|
|
|
.include "../../lang/rust/cargo.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|