wok-next view coreutils-context-user/receipt @ rev 19662

Remove tazchroot (not used for yearsand unusable)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 16 18:37:27 2017 +0100 (2017-03-16)
parents 1d0123efe74c
children
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-context-user"
4 VERSION="8.25"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities related to the user context."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html"
11 WANTED="coreutils"
12 DEPENDS="glibc-base"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 cook_copy_files groups id logname pinky users who whoami
18 }
20 post_remove()
21 {
22 # Restore all Busybox applets that have been replaced
23 while read i; do
24 busybox ln -s /bin/busybox "$1$i"
25 done <<EOT
26 /usr/bin/groups
27 /usr/bin/id
28 /usr/bin/logname
29 /usr/bin/users
30 /usr/bin/who
31 /usr/bin/whoami
32 EOT
33 }