wok diff gawk/receipt @ rev 25540
Update some web_site/wget_url with https
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 09 18:12:54 2023 +0000 (20 months ago) |
parents | 71360a13cd94 |
children | d79ed38ace18 |
line diff
1.1 --- a/gawk/receipt Fri Jan 28 18:19:21 2022 +0000 1.2 +++ b/gawk/receipt Thu Mar 09 18:12:54 2023 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="gawk" 1.7 -VERSION="5.0.1" 1.8 +VERSION="5.1.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="GNU awk to handle simple data-reformatting." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -11,6 +11,7 @@ 1.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.15 1.16 +SUGGESTED="gawk-lang" 1.17 DEPENDS="" 1.18 BUILD_DEPENDS="" 1.19 1.20 @@ -27,7 +28,7 @@ 1.21 cook_tmp_toolchain() 1.22 { 1.23 ./configure && 1.24 - make -j 1 && 1.25 + make && 1.26 make install 1.27 } 1.28 1.29 @@ -37,27 +38,19 @@ 1.30 ./configure \ 1.31 --libexecdir=/usr/lib \ 1.32 $CONFIGURE_ARGS && 1.33 - make -j 1 && 1.34 + make && 1.35 make install 1.36 } 1.37 1.38 # Rules to gen a SliTaz package suitable for Tazpkg. 1.39 genpkg_rules() 1.40 { 1.41 - mkdir -p $fs/usr/share/locale 1.42 + # locales 1.43 + # moved to package gawk-lang 1.44 1.45 - # Set list of wanted locales in LOCALE_PACK 1.46 - . $WOK/slitaz-i18n/stuff/locale-pack.conf 1.47 - 1.48 - # Copy message files in wanted languages, if available 1.49 - for locale in $LOCALE_PACK 1.50 - do 1.51 - [ -d $install/usr/share/locale/$locale ] || continue 1.52 - cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 1.53 - done 1.54 + mkdir -p $fs/usr/share 1.55 1.56 cp -a $install/usr/bin $fs/usr 1.57 - 1.58 cp -a $install/usr/share/awk $fs/usr/share 1.59 } 1.60