void-packages/srcpkgs/fd/template
classabbyamp a4a619bc98 srcpkgs: reënable tests in CI where possible
mostly failures due to root-ness
2025-03-02 00:41:44 -05:00

24 lines
764 B
Bash

# Template file for 'fd'
pkgname=fd
version=10.2.0
revision=1
build_style=cargo
build_helper=qemu
short_desc="Simple, fast and user-friendly alternative to find"
maintainer="tranzystorekk <tranzystorek.io@protonmail.com>"
license="Apache-2.0 OR MIT"
homepage="https://github.com/sharkdp/fd"
changelog="https://raw.githubusercontent.com/sharkdp/fd/master/CHANGELOG.md"
distfiles="https://github.com/sharkdp/fd/archive/refs/tags/v${version}.tar.gz"
checksum=73329fe24c53f0ca47cd0939256ca5c4644742cb7c14cf4114c8c9871336d342
post_install() {
vman doc/fd.1
vlicense LICENSE-MIT
vcompletion contrib/completion/_fd zsh
for shell in bash fish; do
vtargetrun ${DESTDIR}/usr/bin/fd --gen-completions ${shell} > fd.${shell}
vcompletion fd.${shell} ${shell}
done
}