28 lines
846 B
Bash
28 lines
846 B
Bash
# Template file for 'jaq'
|
|
pkgname=jaq
|
|
version=3.0.0
|
|
revision=1
|
|
build_style=cargo
|
|
build_wrksrc="jaq"
|
|
configure_args="--no-default-features"
|
|
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
|
|
https://github.com/01mf02/jaq/releases/download/v${version}/jaq.1>${version}_man"
|
|
checksum="c56948c90d0c3566c8b33eedd9fa61587ffbb2feef7d78172955876d6e10a315
|
|
01c39aa68e2086d3dfe88031984f25cd1eb6d3f146b371f55c7c4e9ba2dbfa77"
|
|
skip_extraction="${version}_man"
|
|
|
|
post_extract() {
|
|
vsrccopy ${version}_man .
|
|
mv ${version}_man jaq.1
|
|
}
|
|
|
|
post_install() {
|
|
vlicense ../LICENSE-MIT
|
|
vman ../jaq.1
|
|
}
|