23 lines
688 B
Bash
23 lines
688 B
Bash
# Template file for 'jaq'
|
|
pkgname=jaq
|
|
version=2.0.0
|
|
revision=1
|
|
build_style=cargo
|
|
make_install_args="--path jaq"
|
|
short_desc="Clone of jq, focussed on correctness, speed, and simplicity"
|
|
maintainer="tranzystorekk <tranzystorek.io@protonmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/01mf02/jaq"
|
|
changelog="https://github.com/01mf02/jaq/releases"
|
|
distfiles="https://github.com/01mf02/jaq/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=7535387562c0e5519811bfd1f405eb8cb7683533781e0790981221e8e5b723c2
|
|
|
|
# uses machine-sized integers but tests run on 64 bit values
|
|
if [ "${XBPS_WORDSIZE}" = 32 ]; then
|
|
make_check_args+=" -- --skip math_rem"
|
|
fi
|
|
|
|
post_install() {
|
|
vlicense LICENSE-MIT
|
|
}
|