wok view coreutils-operations/receipt @ rev 12564

udev: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 28 18:52:14 2012 +0200 (2012-04-28)
parents 6afc9676e679
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-operations"
4 VERSION="8.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that perform basic operations."
7 MAINTAINER="rcx@zoominternet.net"
8 WEB_SITE="http://www.gnu.org/software/coreutils/"
9 DEPENDS="glibc-base acl"
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/cp $fs/bin
22 cp -a $_pkg/usr/bin/dd $fs/bin
23 cp -a $_pkg/usr/bin/mv $fs/bin
24 cp -a $_pkg/usr/bin/ln $fs/bin
25 #cp -a $_pkg/usr/bin/rm $fs/bin
27 mkdir -p $fs/usr/bin
28 cp -a $_pkg/usr/bin/install $fs/usr/bin
29 cp -a $_pkg/usr/bin/shred $fs/usr/bin
30 }
32 # Pre and post install commands for Tazpkg.
33 # We must remove all Busybox symlink before installing.
34 #
35 pre_install()
36 {
37 local root
38 root=$1
39 echo "Processing pre-install commands..."
40 echo -n "Removing all Busybox replaced utils... "
41 rm -f $root/bin/dd $root/bin/mv $root/bin/ln
42 rm -f $root/usr/bin/install $root/usr/bin/shred
43 # Dont remove cp/rm or the installation will fail because tazpkg use
44 # cp and rm during the process.
45 #
46 #rm -f $root/bin/cp $root/bin/rm
47 status
48 }
50 post_remove()
51 {
52 # use busybox ln applet directly since /bin/ln
53 # in this package is remove already
54 /bin/busybox ln -s /bin/busybox $1/bin/cp
55 /bin/busybox ln -s /bin/busybox $1/bin/dd
56 /bin/busybox ln -s /bin/busybox $1/bin/mv
57 /bin/busybox ln -s /bin/busybox $1/bin/ln
58 /bin/busybox ln -s /bin/busybox $1/bin/rm
59 /bin/busybox ln -s /bin/busybox $1/usr/bin/install
60 /bin/busybox ln -s /bin/busybox $1/usr/bin/shred
61 }