# HG changeset patch # User Hans-G?nter Theisgen # Date 1571416251 -3600 # Node ID e6acefc68df0d2156e8822f467ba892b1a5847f9 # Parent 571d4eaa24d69366771a0ed8a1725d032a1d7079 updated tar (1.30 -> 1.32) diff -r 571d4eaa24d6 -r e6acefc68df0 tar-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tar-lang/receipt Fri Oct 18 17:30:51 2019 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="tar-lang" +VERSION="1.32" +CATEGORY="utilities" +TAGS="archive compression" +SHORT_DESC="GNU tar archiving tools - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL3" +WEB_SITE="https://www.gnu.org/software/tar/" + +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" + +WANTED="tar" + +HOST_ARCH="any" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + # Set list of wanted locales in LOCALE_PACK + . $WOK/slitaz-i18n/stuff/locale-pack.conf + + # Copy message file in wanted languages, if available + for locale in $LOCALE_PACK + do + [ - $install/usr/share/locale/$locale ] || continue + mkdir -p $fs/usr/share/locale + cp -a $install/usr/share/locale/$locale $fs/usr/share/locale + done +} diff -r 571d4eaa24d6 -r e6acefc68df0 tar/receipt --- a/tar/receipt Fri Oct 18 17:00:56 2019 +0100 +++ b/tar/receipt Fri Oct 18 17:30:51 2019 +0100 @@ -1,29 +1,32 @@ # SliTaz package receipt. PACKAGE="tar" -VERSION="1.30" +VERSION="1.32" CATEGORY="utilities" +TAGS="archive compression" SHORT_DESC="GNU tar archiving tools." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" +WEB_SITE="https://www.gnu.org/software/tar/" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="http://www.gnu.org/software/tar/" -WGET_URL="http://ftp.gnu.org/gnu/$PACKAGE/$TARBALL" -TAGS="archive compression" -HOST_ARCH="i486 arm" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" DEPENDS="xz" +HOST_ARCH="i486 arm" + # Rules to configure and make the package. compile_rules() { # this is needed since configure can't be run as root with out it export FORCE_UNSAFE_CONFIGURE=1 - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib/$PACKAGE \ - $CONFIGURE_ARGS - make + + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/$PACKAGE \ + $CONFIGURE_ARGS && + make && make DESTDIR=$DESTDIR install }