wok rev 24624
updated grep (3.4 -> 3.7)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 07 16:56:05 2022 +0100 (2022-03-07) |
parents | c132a4a74547 |
children | ddc3cc7ce280 |
files | grep-lang/receipt grep/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/grep-lang/receipt Mon Mar 07 16:56:05 2022 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="grep-lang" 1.7 +VERSION="3.7" 1.8 +CATEGORY="localization" 1.9 +SHORT_DESC="GNU Global Regular Expression Print - localised messages." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="GPL3" 1.12 +WEB_SITE="https://www.gnu.org/software/grep/" 1.13 + 1.14 +WANTED="grep" 1.15 + 1.16 +genpkg_rules() 1.17 +{ 1.18 + cook_copy_folders locale 1.19 +}
2.1 --- a/grep/receipt Mon Mar 07 16:41:52 2022 +0100 2.2 +++ b/grep/receipt Mon Mar 07 16:56:05 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="grep" 2.7 -VERSION="3.4" 2.8 +VERSION="3.7" 2.9 CATEGORY="development" 2.10 SHORT_DESC="GNU Global Regular Expression Print." 2.11 MAINTAINER="paul@slitaz.org" 2.12 @@ -11,6 +11,7 @@ 2.13 TARBALL="$PACKAGE-$VERSION.tar.xz" 2.14 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.15 2.16 +SUGGESTED="grep-lang" 2.17 DEPENDS="pcre" 2.18 BUILD_DEPENDS="pcre-dev" 2.19 2.20 @@ -25,7 +26,7 @@ 2.21 compile_rules() 2.22 { 2.23 ./configure $CONFIGURE_ARGS && 2.24 - make -j 1 && 2.25 + make && 2.26 make install 2.27 2.28 find $install/usr/share/man -type f -exec gzip -9 \{\} \; 2.29 @@ -34,10 +35,7 @@ 2.30 # Rules to gen a SliTaz package suitable for Tazpkg. 2.31 genpkg_rules() 2.32 { 2.33 - mkdir -p $fs/usr/share 2.34 - 2.35 - cp -a $install/usr/bin $fs 2.36 - cp -a $install/usr/share/man $fs/usr/share 2.37 + cook_copy_folders bin 2.38 } 2.39 2.40 post_remove()