wok rev 25345

updated tar and tar-lang (1.32 -> 1.34)
author Hans-G?nter Theisgen
date Mon Jul 25 07:58:01 2022 +0100 (21 months ago)
parents 04410c6a9726
children d531d97128bf
files tar-lang/receipt tar/description.txt tar/receipt
line diff
     1.1 --- a/tar-lang/receipt	Mon Jul 25 07:43:39 2022 +0100
     1.2 +++ b/tar-lang/receipt	Mon Jul 25 07:58:01 2022 +0100
     1.3 @@ -1,8 +1,8 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tar-lang"
     1.7 -VERSION="1.32"
     1.8 -CATEGORY="utilities"
     1.9 +VERSION="1.34"
    1.10 +CATEGORY="localization"
    1.11  TAGS="archive compression"
    1.12  SHORT_DESC="GNU tar archiving tools - localised messages."
    1.13  MAINTAINER="maintainer@slitaz.org"
    1.14 @@ -16,14 +16,5 @@
    1.15  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.16  genpkg_rules()
    1.17  {
    1.18 -	# Set list of wanted locales in LOCALE_PACK
    1.19 -	. $WOK/slitaz-i18n/stuff/locale-pack.conf
    1.20 -
    1.21 -	# Copy message file in wanted languages, if available
    1.22 -	for locale in $LOCALE_PACK
    1.23 -	  do
    1.24 -		[ -d $install/usr/share/locale/$locale ] || continue
    1.25 -		mkdir -p $fs/usr/share/locale
    1.26 -		cp -a $install/usr/share/locale/$locale	$fs/usr/share/locale
    1.27 -	  done
    1.28 +	cook_copy_folders	locale
    1.29  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/tar/description.txt	Mon Jul 25 07:58:01 2022 +0100
     2.3 @@ -0,0 +1,14 @@
     2.4 +GNU Tar provides the ability to create tar archives,
     2.5 +as well as various other kinds of manipulation.
     2.6 +For example, you can use Tar on previously created
     2.7 +archives to extract files, to store additional files,
     2.8 +or to update or list files which were already stored.
     2.9 +
    2.10 +Initially, tar archives were used to store files
    2.11 +conveniently on magnetic tape.
    2.12 +The name "Tar" comes from this use; it stands for
    2.13 +tape archiver.
    2.14 +Despite the utility's name, Tar can direct its
    2.15 +output to available devices, files, or other programs
    2.16 +(using pipes), it can even access remote devices or
    2.17 +files (as archives).
     3.1 --- a/tar/receipt	Mon Jul 25 07:43:39 2022 +0100
     3.2 +++ b/tar/receipt	Mon Jul 25 07:58:01 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="tar"
     3.7 -VERSION="1.32"
     3.8 +VERSION="1.34"
     3.9  CATEGORY="utilities"
    3.10  TAGS="archive compression"
    3.11  SHORT_DESC="GNU tar archiving tools."
    3.12 @@ -12,6 +12,7 @@
    3.13  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.14  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    3.15  
    3.16 +SUGGESTED="tar-lang"
    3.17  DEPENDS="xz"
    3.18  
    3.19  HOST_ARCH="i486 arm"
    3.20 @@ -26,7 +27,7 @@
    3.21  # Rules to configure and make the package.
    3.22  compile_rules()
    3.23  {
    3.24 -	# this is needed since configure can't be run as root with out it
    3.25 +	# this is needed since configure can't be run as root without it
    3.26  	export FORCE_UNSAFE_CONFIGURE=1
    3.27  
    3.28  	./configure				\
    3.29 @@ -34,14 +35,13 @@
    3.30  		--libexecdir=/usr/lib/$PACKAGE	\
    3.31  		$CONFIGURE_ARGS &&
    3.32  	make &&
    3.33 -	make DESTDIR=$DESTDIR install
    3.34 +	make install DESTDIR=$DESTDIR
    3.35  }
    3.36  
    3.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.38  genpkg_rules()
    3.39  {
    3.40 -    mkdir -p $fs
    3.41 -    cp -a $install/usr/bin $fs
    3.42 +	cook_copy_folders	bin
    3.43  }
    3.44  
    3.45  # Prevent erasing busybox...