31 lines
904 B
Bash
31 lines
904 B
Bash
# Template file for 'broot'
|
|
pkgname=broot
|
|
version=1.35.0
|
|
revision=1
|
|
build_style=cargo
|
|
hostmakedepends="pkg-config"
|
|
makedepends="oniguruma-devel"
|
|
short_desc="Interactive directory tree view, fuzzy search, balanced BFS descent"
|
|
maintainer="cinerea0 <cinerea0@protonmail.com>"
|
|
license="MIT"
|
|
homepage="https://dystroy.org/broot/"
|
|
changelog="https://raw.githubusercontent.com/Canop/broot/main/CHANGELOG.md"
|
|
distfiles="https://github.com/Canop/broot/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=1d3c2674a95c8c13ff66d356aab04da4f7e7695e2073c2d3a85842916f4d307e
|
|
|
|
if [ "$XBPS_TARGET_ENDIAN" = "be" ]; then
|
|
broken="exr crate errors on big endian"
|
|
fi
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc64*) ;;
|
|
ppc*|mips*) broken="unresolved import 'std::sync::atomic::AtomicU64'";;
|
|
esac
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
|
|
vsed -e "s/#version/${version}/g;s,#date,$(date +'%Y/%m/%d'),g" -i man/page
|
|
vman man/page broot.1
|
|
}
|