wok view jq/receipt @ rev 23029

updated libffi and libffi-dev (3.2.1 -> 3.3)
author Hans-G?nter Theisgen
date Tue Mar 03 16:31:51 2020 +0100 (2020-03-03)
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 }