wok view coreutils-command/receipt @ rev 6525

Up mpc-library (0.8.2) caused by gmp upgrade
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 03 09:20:54 2010 +0200 (2010-10-03)
parents 5924ec6bb02f
children c5ea37a36d18
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-command"
4 VERSION="8.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU command utilities."
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/nice $fs/bin
22 cp -a $_pkg/usr/bin/kill $fs/bin
23 cp -a $_pkg/usr/bin/sleep $fs/bin
25 mkdir -p $fs/usr/bin
26 cp -a $_pkg/usr/bin/env $fs/usr/bin
27 cp -a $_pkg/usr/bin/nohup $fs/usr/bin
28 cp -a $_pkg/usr/bin/timeout $fs/usr/bin
30 mkdir -p $fs/usr/sbin
31 cp -a $_pkg/usr/bin/chroot $fs/usr/sbin
32 }
34 # Pre and post install commands for Tazpkg.
35 # We must remove all Busybox symlink before installing.
36 #
37 pre_install()
38 {
39 local root
40 root=$1
41 echo "Processing pre-install commands..."
42 echo -n "Removing all Busybox replaced utils... "
43 rm -f $root/bin/nice $root/bin/kill $root/bin/sleep
44 rm -f $root/usr/bin/env $root/usr/bin/nohup
45 rm -f $root/usr/sbin/chroot
46 status
47 }
49 post_remove()
50 {
51 ln -s /bin/busybox /bin/nice
52 ln -s /bin/busybox /bin/kill
53 ln -s /bin/busybox /bin/sleep
54 ln -s /bin/busybox /usr/bin/env
55 ln -s /bin/busybox /usr/bin/nohup
56 ln -s /bin/busybox /usr/sbin/chroot
57 }