wok-current diff coreutils-redirection/receipt @ rev 22616
updated coreutils packages (8.25 -> 8.31)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 12 09:19:37 2020 +0100 (2020-01-12) |
parents | 1d0123efe74c |
children | 3b252eb4d26a |
line diff
1.1 --- a/coreutils-redirection/receipt Wed Jun 15 17:23:11 2016 +0300 1.2 +++ b/coreutils-redirection/receipt Sun Jan 12 09:19:37 2020 +0100 1.3 @@ -1,15 +1,15 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="coreutils-redirection" 1.7 -VERSION="8.25" 1.8 +VERSION="8.31" 1.9 CATEGORY="system-tools" 1.10 -SHORT_DESC="GNU utilities that work with disks." 1.11 +SHORT_DESC="GNU utility for output redirection." 1.12 MAINTAINER="rcx@zoominternet.net" 1.13 LICENSE="GPL3" 1.14 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html" 1.15 1.16 +DEPENDS="glibc-base" 1.17 WANTED="coreutils" 1.18 -DEPENDS="glibc-base" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 @@ -17,11 +17,12 @@ 1.23 mandir="$fs/usr/share/man/man1" 1.24 mkdir -p $mandir 1.25 1.26 - while read i; do 1.27 + while read i 1.28 + do 1.29 mkdir -p $fs$(dirname $i) 1.30 - cp -a $install$i $fs$i 1.31 + cp -a $install$i $fs$i 1.32 find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \; 1.33 - done <<EOT 1.34 + done <<EOT 1.35 /usr/bin/tee 1.36 EOT 1.37 } 1.38 @@ -29,9 +30,10 @@ 1.39 post_remove() 1.40 { 1.41 # Restore all Busybox applets that have been replaced 1.42 - while read i; do 1.43 + while read i 1.44 + do 1.45 busybox ln -s /bin/busybox "$1$i" 1.46 - done <<EOT 1.47 + done <<EOT 1.48 /usr/bin/tee 1.49 EOT 1.50 }