wok view coreutils-operations/receipt @ rev 5187

syslinux: msg for 3.0 and up splash image
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 00:46:39 2010 +0100 (2010-03-28)
parents 614e0edaed02
children 5924ec6bb02f
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-operations"
4 VERSION="7.6"
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 ln -s /bin/busybox /bin/cp
53 ln -s /bin/busybox /bin/dd
54 ln -s /bin/busybox /bin/mv
55 ln -s /bin/busybox /bin/ln
56 ln -s /bin/busybox /bin/rm
57 ln -s /bin/busybox /usr/bin/install
58 ln -s /bin/busybox /usr/bin/shred
59 }