wok rev 22974

updated jq (1.4 -> 1.6)
author Hans-G?nter Theisgen
date Sat Feb 29 15:17:59 2020 +0100 (2020-02-29)
parents 64d013f1415a
children 3afd0e5958de
files jq/receipt
line diff
     1.1 --- a/jq/receipt	Sat Feb 29 15:06:29 2020 +0100
     1.2 +++ b/jq/receipt	Sat Feb 29 15:17:59 2020 +0100
     1.3 @@ -1,22 +1,26 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="jq"
     1.7 -VERSION="1.4"
     1.8 +VERSION="1.6"
     1.9  CATEGORY="utilities"
    1.10 -SHORT_DESC="jq is a lightweight and flexible command-line JSON processor"
    1.11 +TAGS="json"
    1.12 +SHORT_DESC="A lightweight and flexible command-line JSON processor."
    1.13  MAINTAINER="nneul@neulinger.org"
    1.14  LICENSE="MIT"
    1.15 +WEB_SITE="https://stedolan.github.io/jq/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WEB_SITE="http://stedolan.github.io/jq/"
    1.19 -WGET_URL="${WEB_SITE}download/source/$TARBALL"
    1.20 -TAGS="json"
    1.21 +WGET_URL="https://github.com/stedolan/$PACKAGE/releases/download/$PACKAGE-$VERSION/$TARBALL"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.27 -	--mandir=/usr/share/man \
    1.28 -	$CONFIGURE_ARGS &&
    1.29 +	./configure				\
    1.30 +		--prefix=/usr			\
    1.31 +		--infodir=/usr/share/info	\
    1.32 +		--mandir=/usr/share/man		\
    1.33 +		--with-oniguruma=no		\
    1.34 +		$CONFIGURE_ARGS &&
    1.35  	make &&
    1.36  	make DESTDIR=$DESTDIR install
    1.37  }
    1.38 @@ -25,5 +29,5 @@
    1.39  genpkg_rules()
    1.40  {
    1.41  	mkdir -p $fs/usr
    1.42 -	cp -a $install/usr/bin $fs/usr
    1.43 +	cp -a $install/usr/bin	$fs/usr
    1.44  }