wok diff jq/receipt @ rev 23373
updated perl-net-dns (0.66 -> 1.23)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 31 13:47:04 2020 +0100 (2020-03-31) |
parents | 762b649a4d73 |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/jq/receipt Wed Mar 23 11:51:37 2016 +0200 1.2 +++ b/jq/receipt Tue Mar 31 13:47:04 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 }