wok annotate coreutils-operations/receipt @ rev 14999

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