wok annotate coreutils-command/receipt @ rev 23950

syslinux/taziso: fix tazbootkey
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 20 21:21:51 2020 +0000 (2020-09-20)
parents 1d0123efe74c
children 3b252eb4d26a
rev   line source
rcx@3662 1 # SliTaz package receipt.
rcx@3662 2
rcx@3662 3 PACKAGE="coreutils-command"
Hans-G?nter@22616 4 VERSION="8.31"
rcx@3662 5 CATEGORY="system-tools"
rcx@3662 6 SHORT_DESC="GNU command utilities."
rcx@3662 7 MAINTAINER="rcx@zoominternet.net"
pascal@14999 8 LICENSE="GPL3"
al@19215 9 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html"
al@19215 10
Hans-G?nter@22616 11 DEPENDS="glibc-base"
pascal@14999 12 WANTED="coreutils"
rcx@3662 13
rcx@3662 14 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3662 15 genpkg_rules()
rcx@3662 16 {
al@19215 17 mandir="$fs/usr/share/man/man1"
al@19215 18 mkdir -p $mandir ${mandir/1/8}
rcx@3662 19
Hans-G?nter@22616 20 while read i
Hans-G?nter@22616 21 do
al@19215 22 mkdir -p $fs$(dirname $i)
Hans-G?nter@22616 23 cp -a $install$i $fs$i
al@19215 24 find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \;
Hans-G?nter@22616 25 done <<EOT
al@19215 26 /usr/bin/env
al@19215 27 /usr/bin/kill
al@19215 28 /usr/bin/nice
al@19215 29 /usr/bin/nohup
al@19215 30 /usr/bin/sleep
al@19215 31 /usr/bin/stdbuf
al@19215 32 /usr/bin/timeout
al@19215 33 /usr/libexec/coreutils/libstdbuf.so
al@19215 34 /usr/sbin/chroot
al@19215 35 EOT
rcx@3662 36
al@19215 37 mv $mandir/chroot.* ${mandir/1/8}
al@19215 38 }
al@19215 39
al@19215 40 post_install()
al@19215 41 {
al@19215 42 # Remove Busybox applets in order to not clash with ("/bin", "/sbin",
al@19215 43 # "/usr/bin" and "/usr/sbin" conflicts with the same filename)
al@19215 44 rm "$1/bin/kill" # /usr/bin/kill
al@19215 45 rm "$1/bin/nice" # /usr/bin/nice
al@19215 46 rm "$1/bin/sleep" # /usr/bin/sleep
rcx@3662 47 }
rcx@3662 48
rcx@3662 49 post_remove()
rcx@3662 50 {
al@19215 51 # Restore all Busybox applets that have been replaced
Hans-G?nter@22616 52 while read i
Hans-G?nter@22616 53 do
al@19215 54 busybox ln -s /bin/busybox "$1$i"
Hans-G?nter@22616 55 done <<EOT
al@19215 56 /bin/kill
al@19215 57 /bin/nice
al@19215 58 /bin/sleep
al@19215 59 /usr/bin/env
al@19215 60 /usr/bin/nohup
al@19215 61 /usr/bin/timeout
al@19215 62 /usr/sbin/chroot
al@19215 63 EOT
rcx@3662 64 }