wok-6.x rev 24586
updated gawk (5.0.1 -> 5.1.1)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Feb 28 09:01:30 2022 +0100 (2022-02-28) |
parents | 49b4a69029bb |
children | 85ce080d4127 |
files | gawk-lang/receipt gawk/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gawk-lang/receipt Mon Feb 28 09:01:30 2022 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gawk-lang" 1.7 +VERSION="5.1.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="GNU awk to handle simple data-reformatting - localised messages." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="GPL3" 1.12 +WEB_SITE="https://www.gnu.org/software/gawk/" 1.13 + 1.14 +WANTED="gawk" 1.15 + 1.16 +genpkg_rules() 1.17 +{ 1.18 + cook_copy_folders locale 1.19 +}
2.1 --- a/gawk/receipt Mon Feb 28 07:46:13 2022 +0100 2.2 +++ b/gawk/receipt Mon Feb 28 09:01:30 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="gawk" 2.7 -VERSION="5.0.1" 2.8 +VERSION="5.1.1" 2.9 CATEGORY="development" 2.10 SHORT_DESC="GNU awk to handle simple data-reformatting." 2.11 MAINTAINER="pankso@slitaz.org" 2.12 @@ -11,6 +11,7 @@ 2.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.15 2.16 +SUGGESTED="gawk-lang" 2.17 DEPENDS="" 2.18 BUILD_DEPENDS="" 2.19 2.20 @@ -27,7 +28,7 @@ 2.21 cook_tmp_toolchain() 2.22 { 2.23 ./configure && 2.24 - make -j 1 && 2.25 + make && 2.26 make install 2.27 } 2.28 2.29 @@ -37,27 +38,19 @@ 2.30 ./configure \ 2.31 --libexecdir=/usr/lib \ 2.32 $CONFIGURE_ARGS && 2.33 - make -j 1 && 2.34 + make && 2.35 make install 2.36 } 2.37 2.38 # Rules to gen a SliTaz package suitable for Tazpkg. 2.39 genpkg_rules() 2.40 { 2.41 - mkdir -p $fs/usr/share/locale 2.42 + # locales 2.43 + # moved to package gawk-lang 2.44 2.45 - # Set list of wanted locales in LOCALE_PACK 2.46 - . $WOK/slitaz-i18n/stuff/locale-pack.conf 2.47 - 2.48 - # Copy message files in wanted languages, if available 2.49 - for locale in $LOCALE_PACK 2.50 - do 2.51 - [ -d $install/usr/share/locale/$locale ] || continue 2.52 - cp -a $install/usr/share/locale/$locale $fs/usr/share/locale 2.53 - done 2.54 + mkdir -p $fs/usr/share 2.55 2.56 cp -a $install/usr/bin $fs/usr 2.57 - 2.58 cp -a $install/usr/share/awk $fs/usr/share 2.59 } 2.60