wok annotate coreutils-operations/receipt @ rev 6458

Fixed post_remove function to use busybox ln directly. Otherwise just using ln won't work since ln is part of package and already removed.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Sep 29 01:19:07 2010 +0000 (2010-09-29)
parents 5924ec6bb02f
children 250ea75bef27
rev   line source
rcx@3662 1 # SliTaz package receipt.
rcx@3662 2
rcx@3662 3 PACKAGE="coreutils-operations"
pankso@5258 4 VERSION="8.4"
rcx@3662 5 CATEGORY="system-tools"
rcx@3662 6 SHORT_DESC="GNU utilities that perform basic operations."
rcx@3662 7 MAINTAINER="rcx@zoominternet.net"
rcx@3662 8 WEB_SITE="http://www.gnu.org/software/coreutils/"
pascal@4999 9 DEPENDS="glibc-base acl"
rcx@3662 10 WANTED="coreutils"
rcx@3662 11
rcx@3662 12 # Rules to gen a SliTaz package suitable for Tazpkg.
rcx@3662 13 #
rcx@3662 14 # This is a special package for installed system or developer. We only take
rcx@3662 15 # a few things, as Busybox provides all the basic utilities, but not for compiling.
rcx@3662 16 # But DO NOT erase a Busybox applet, remove it before with pre_install rules.
rcx@3662 17 #
rcx@3662 18 genpkg_rules()
rcx@3662 19 {
rcx@3662 20 mkdir -p $fs/bin
pankso@4154 21 #cp -a $_pkg/usr/bin/cp $fs/bin
rcx@3662 22 cp -a $_pkg/usr/bin/dd $fs/bin
rcx@3662 23 cp -a $_pkg/usr/bin/mv $fs/bin
jozee@4611 24 cp -a $_pkg/usr/bin/ln $fs/bin
pankso@4154 25 #cp -a $_pkg/usr/bin/rm $fs/bin
rcx@3662 26
rcx@3662 27 mkdir -p $fs/usr/bin
rcx@3662 28 cp -a $_pkg/usr/bin/install $fs/usr/bin
rcx@3662 29 cp -a $_pkg/usr/bin/shred $fs/usr/bin
rcx@3662 30 }
rcx@3662 31
rcx@3662 32 # Pre and post install commands for Tazpkg.
rcx@3662 33 # We must remove all Busybox symlink before installing.
rcx@3662 34 #
rcx@3662 35 pre_install()
rcx@3662 36 {
rcx@3662 37 local root
rcx@3662 38 root=$1
rcx@3662 39 echo "Processing pre-install commands..."
rcx@3662 40 echo -n "Removing all Busybox replaced utils... "
jozee@4611 41 rm -f $root/bin/dd $root/bin/mv $root/bin/ln
rcx@3662 42 rm -f $root/usr/bin/install $root/usr/bin/shred
pankso@4154 43 # Dont remove cp/rm or the installation will fail because tazpkg use
pankso@4154 44 # cp and rm during the process.
pankso@4154 45 #
pankso@4154 46 #rm -f $root/bin/cp $root/bin/rm
rcx@3662 47 status
rcx@3662 48 }
rcx@3662 49
rcx@3662 50 post_remove()
rcx@3662 51 {
slaxemulator@6458 52 # use busybox ln applet directly since /bin/ln
slaxemulator@6458 53 # in this package is remove already
slaxemulator@6458 54 /bin/busybox ln -s /bin/busybox /bin/cp
slaxemulator@6458 55 /bin/busybox ln -s /bin/busybox /bin/dd
slaxemulator@6458 56 /bin/busybox ln -s /bin/busybox /bin/mv
slaxemulator@6458 57 /bin/busybox ln -s /bin/busybox /bin/ln
slaxemulator@6458 58 /bin/busybox ln -s /bin/busybox /bin/rm
slaxemulator@6458 59 /bin/busybox ln -s /bin/busybox /usr/bin/install
slaxemulator@6458 60 /bin/busybox ln -s /bin/busybox /usr/bin/shred
rcx@3662 61 }