wok annotate coreutils-context-system/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 6fab3264ba87
children 9b6a3a5c1a07
rev   line source
rcx@3662 1 # SliTaz package receipt.
rcx@3662 2
rcx@3662 3 PACKAGE="coreutils-context-system"
al@19215 4 VERSION="8.25"
rcx@3662 5 CATEGORY="system-tools"
rcx@3662 6 SHORT_DESC="GNU utilities related to the system context."
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
pascal@14999 11 WANTED="coreutils"
rcx@3662 12 DEPENDS="glibc-base"
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
rcx@3662 19
al@19215 20 while read i; do
al@19215 21 mkdir -p $fs$(dirname $i)
al@19215 22 cp -a $install$i $fs$i
al@19215 23 find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \;
al@19215 24 done <<EOT
al@19215 25 /bin/date
al@19215 26 /bin/uname
al@19215 27 /usr/bin/chcon
al@19215 28 /usr/bin/hostid
al@19215 29 /usr/bin/nproc
al@19215 30 /usr/bin/runcon
al@19215 31 /usr/bin/uptime
al@19215 32 EOT
rcx@3662 33 }
rcx@3662 34
rcx@3662 35 post_remove()
rcx@3662 36 {
al@19215 37 # Restore all Busybox applets that have been replaced
al@19215 38 while read i; do
al@19215 39 busybox ln -s /bin/busybox "$1$i"
al@19215 40 done <<EOT
al@19215 41 /bin/date
al@19215 42 /bin/uname
al@19215 43 /usr/bin/hostid
al@19215 44 /usr/bin/uptime
al@19215 45 EOT
rcx@3662 46 }