From de62e6cade84d3f73a2bad9457f400ef272448a6 Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Mon, 8 Jul 2024 09:07:44 +0200 Subject: [PATCH] New package: jaq-2.0.0 --- srcpkgs/jaq/template | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 srcpkgs/jaq/template diff --git a/srcpkgs/jaq/template b/srcpkgs/jaq/template new file mode 100644 index 00000000000..a89410d04a8 --- /dev/null +++ b/srcpkgs/jaq/template @@ -0,0 +1,22 @@ +# 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 " +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 +}