wok-next view coreutils-file-attributes/receipt @ rev 19665

cookutils: up 892
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 17 15:07:45 2017 +0200 (2017-03-17)
parents 1d0123efe74c
children
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-file-attributes"
4 VERSION="8.25"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that change file attributes."
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 chgrp chmod chown touch
18 }
20 post_install()
21 {
22 # Remove Busybox applets in order to not clash with ("/bin", "/sbin",
23 # "/usr/bin" and "/usr/sbin" conflicts with the same filename)
24 rm "$1/bin/touch" # for /usr/bin/touch
25 }
27 post_remove()
28 {
29 # Restore all Busybox applets that have been replaced
30 while read i; do
31 busybox ln -s /bin/busybox "$1$i"
32 done <<EOT
33 /bin/chgrp
34 /bin/chmod
35 /bin/chown
36 /bin/touch
37 EOT
38 }