# HG changeset patch # User Hans-G?nter Theisgen # Date 1646668565 -3600 # Node ID 6c76b35274f955ca3ca2b0942291c6d7471bd9be # Parent c132a4a745470b447d7c5e099c658ca56127b685 updated grep (3.4 -> 3.7) diff -r c132a4a74547 -r 6c76b35274f9 grep-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/grep-lang/receipt Mon Mar 07 16:56:05 2022 +0100 @@ -0,0 +1,16 @@ +# SliTaz package receipt. + +PACKAGE="grep-lang" +VERSION="3.7" +CATEGORY="localization" +SHORT_DESC="GNU Global Regular Expression Print - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL3" +WEB_SITE="https://www.gnu.org/software/grep/" + +WANTED="grep" + +genpkg_rules() +{ + cook_copy_folders locale +} diff -r c132a4a74547 -r 6c76b35274f9 grep/receipt --- a/grep/receipt Mon Mar 07 16:41:52 2022 +0100 +++ b/grep/receipt Mon Mar 07 16:56:05 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="grep" -VERSION="3.4" +VERSION="3.7" CATEGORY="development" SHORT_DESC="GNU Global Regular Expression Print." MAINTAINER="paul@slitaz.org" @@ -11,6 +11,7 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" +SUGGESTED="grep-lang" DEPENDS="pcre" BUILD_DEPENDS="pcre-dev" @@ -25,7 +26,7 @@ compile_rules() { ./configure $CONFIGURE_ARGS && - make -j 1 && + make && make install find $install/usr/share/man -type f -exec gzip -9 \{\} \; @@ -34,10 +35,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share - - cp -a $install/usr/bin $fs - cp -a $install/usr/share/man $fs/usr/share + cook_copy_folders bin } post_remove()