wok view coreutils-file-attributes/receipt @ rev 9195

busybox: add conspy fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 09 22:01:54 2011 +0100 (2011-03-09)
parents 1c0f2748d7e8
children 6afc9676e679
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-file-attributes"
4 VERSION="8.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that change file attributes."
7 MAINTAINER="rcx@zoominternet.net"
8 WEB_SITE="http://www.gnu.org/software/coreutils/"
9 DEPENDS="glibc-base"
10 WANTED="coreutils"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 #
14 # This is a special package for installed system or developer. We only take
15 # a few things, as Busybox provides all the basic utilities, but not for compiling.
16 # But DO NOT erase a Busybox applet, remove it before with pre_install rules.
17 #
18 genpkg_rules()
19 {
20 mkdir -p $fs/bin
21 cp -a $_pkg/usr/bin/chown $fs/bin
22 cp -a $_pkg/usr/bin/chgrp $fs/bin
23 cp -a $_pkg/usr/bin/chmod $fs/bin
24 cp -a $_pkg/usr/bin/touch $fs/bin
25 }
27 # Pre and post install commands for Tazpkg.
28 # We must remove all Busybox symlink before installing.
29 #
30 pre_install()
31 {
32 local root
33 root=$1
34 echo "Processing pre-install commands..."
35 echo -n "Removing all Busybox replaced utils... "
36 rm -f $root/bin/chown $root/bin/chgrp $root/bin/chmod $root/bin/touch
37 status
38 }
40 post_remove()
41 {
42 ln -s /bin/busybox /bin/chown
43 ln -s /bin/busybox /bin/chgrp
44 ln -s /bin/busybox /bin/chmod
45 ln -s /bin/busybox /bin/touch
46 }