29 lines
909 B
Bash
29 lines
909 B
Bash
# Template file for 'qsv'
|
|
pkgname=qsv
|
|
version=0.138.0
|
|
revision=1
|
|
archs="x86_64* i686* aarch64* arm*" # ring
|
|
build_style=cargo
|
|
configure_args="--features=feature_capable"
|
|
make_check_args="-- --skip=test_comments --skip=test_sample --skip=test_sort
|
|
--skip=test_describegpt"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libzstd-devel"
|
|
short_desc="CLI toolkit for CSV data-wrangling"
|
|
maintainer="icp <pangolin@vivaldi.net>"
|
|
license="Unlicense"
|
|
homepage="https://qsv.dathere.com"
|
|
changelog="https://raw.githubusercontent.com/jqnatividad/qsv/master/CHANGELOG.md"
|
|
distfiles="https://github.com/jqnatividad/qsv/archive/refs/tags/${version}.tar.gz"
|
|
checksum=c53299dc56dbf7776a86d3802e928a8dc44a922b1bdaa1f1903d0ab8bb457201
|
|
|
|
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
|
|
XBPS_CROSS_RUSTFLAGS+=" -latomic"
|
|
fi
|
|
|
|
post_install() {
|
|
for shell in bash fish zsh; do
|
|
vcompletion contrib/completions/examples/qsv.$shell $shell
|
|
done
|
|
}
|