# HG changeset patch # User Hans-G?nter Theisgen # Date 1582985879 -3600 # Node ID f9a649f31165514495e2bb20f0b9a66c5f36e451 # Parent 64d013f1415a1a83abb8f7ca09bea85f7f6fb370 updated jq (1.4 -> 1.6) diff -r 64d013f1415a -r f9a649f31165 jq/receipt --- a/jq/receipt Sat Feb 29 15:06:29 2020 +0100 +++ b/jq/receipt Sat Feb 29 15:17:59 2020 +0100 @@ -1,22 +1,26 @@ # SliTaz package receipt. PACKAGE="jq" -VERSION="1.4" +VERSION="1.6" CATEGORY="utilities" -SHORT_DESC="jq is a lightweight and flexible command-line JSON processor" +TAGS="json" +SHORT_DESC="A lightweight and flexible command-line JSON processor." MAINTAINER="nneul@neulinger.org" LICENSE="MIT" +WEB_SITE="https://stedolan.github.io/jq/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://stedolan.github.io/jq/" -WGET_URL="${WEB_SITE}download/source/$TARBALL" -TAGS="json" +WGET_URL="https://github.com/stedolan/$PACKAGE/releases/download/$PACKAGE-$VERSION/$TARBALL" # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-oniguruma=no \ + $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install } @@ -25,5 +29,5 @@ genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cp -a $install/usr/bin $fs/usr }