# HG changeset patch # User Hans-G?nter Theisgen # Date 1592837881 -3600 # Node ID 303e20b105cd8dc83810aa655fa76c517be1f34b # Parent cee3e96c08f679ef9d81f002f1efae449d81a6bc updated coreutils (8.30 -> 8.32) diff -r cee3e96c08f6 -r 303e20b105cd coreutils/receipt --- a/coreutils/receipt Mon Jun 22 15:23:04 2020 +0100 +++ b/coreutils/receipt Mon Jun 22 15:58:01 2020 +0100 @@ -1,10 +1,11 @@ # SliTaz package receipt v2. PACKAGE="coreutils" -VERSION="8.30" +VERSION="8.32" CATEGORY="meta" +TAGS="LFS" SHORT_DESC="Utilities for using and setting the basic system" -MAINTAINER="devel@slitaz.org" +MAINTAINER="maintainer@slitaz.org" LICENSE="GPL3" WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html" LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter05/coreutils.html" @@ -12,8 +13,8 @@ TARBALL="$PACKAGE-$VERSION.tar.xz" WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" -BUILD_DEPENDS="automake autoconf gettext-dev xz libcap-dev gmp-dev patch \ -texinfo openssl-dev" +BUILD_DEPENDS="autoconf automake gettext-dev gmp-dev libcap-devopenssl-dev + patch texinfo xz" SPLIT="\ $PACKAGE-character $PACKAGE-command $PACKAGE-conditions \ $PACKAGE-context-system $PACKAGE-context-user $PACKAGE-context-working \ @@ -24,7 +25,8 @@ $PACKAGE-path $PACKAGE-print $PACKAGE-redirection \ $PACKAGE-multicall:multi" -compile_rules() { +compile_rules() +{ case $SET in multi) SET_ARGS='--enable-single-binary=symlinks';; *) SET_ARGS='';; @@ -35,10 +37,10 @@ autoreconf -fi - FORCE_UNSAFE_CONFIGURE=1 \ - ./configure \ - --with-openssl \ - $SET_ARGS \ + FORCE_UNSAFE_CONFIGURE=1 \ + ./configure \ + --with-openssl \ + $SET_ARGS \ $CONFIGURE_ARGS && make && make install || return 1 @@ -49,7 +51,8 @@ $install/usr/sbin \ $install/usr/share/man/man8 - while read from to; do + while read from to + do case $SET in multi) rm $install$from @@ -63,7 +66,7 @@ mv $install$from $install$to ;; esac - done <