wok view jq/receipt @ rev 24005

cdrkit: force catalog sort weight
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 19 09:09:36 2021 +0000 (2021-01-19)
parents 762b649a4d73
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="jq"
4 VERSION="1.6"
5 CATEGORY="utilities"
6 TAGS="json"
7 SHORT_DESC="A lightweight and flexible command-line JSON processor."
8 MAINTAINER="nneul@neulinger.org"
9 LICENSE="MIT"
10 WEB_SITE="https://stedolan.github.io/jq/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/stedolan/$PACKAGE/releases/download/$PACKAGE-$VERSION/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --with-oniguruma=no \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }