wok diff coreutils-directory/receipt @ rev 4009

pptpclient-extra: MPPE could be in kernel
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 02 18:27:16 2009 +0200 (2009-09-02)
parents
children 11129d96133c
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/coreutils-directory/receipt	Wed Sep 02 18:27:16 2009 +0200
     1.3 @@ -0,0 +1,48 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="coreutils-directory"
     1.7 +VERSION="7.4"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="GNU utilities that list directories."
    1.10 +MAINTAINER="rcx@zoominternet.net"
    1.11 +WEB_SITE="http://www.gnu.org/software/coreutils/"
    1.12 +DEPENDS="glibc-base"
    1.13 +WANTED="coreutils"
    1.14 +
    1.15 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.16 +#
    1.17 +# This is a special package for installed system or developer. We only take
    1.18 +# a few things, as Busybox provides all the basic utilities, but not for compiling.
    1.19 +# But DO NOT erase a Busybox applet, remove it before with pre_install rules.
    1.20 +#
    1.21 +genpkg_rules()
    1.22 +{
    1.23 +	mkdir -p $fs/bin
    1.24 +	cp -a $_pkg/usr/bin/ls $fs/bin
    1.25 +
    1.26 +	mkdir -p $fs/usr/bin
    1.27 +	cp -a $_pkg/usr/bin/dir $fs/usr/bin
    1.28 +	cp -a $_pkg/usr/bin/vdir $fs/usr/bin
    1.29 +	cp -a $_pkg/usr/bin/dircolors $fs/usr/bin
    1.30 +}
    1.31 +
    1.32 +# Pre and post install commands for Tazpkg.
    1.33 +# We must remove all Busybox symlink before installing.
    1.34 +#
    1.35 +pre_install()
    1.36 +{
    1.37 +	local root
    1.38 +	root=$1
    1.39 +	echo "Processing pre-install commands..."
    1.40 +	echo -n "Removing all Busybox replaced utils... "
    1.41 +	rm -f $root/bin/ls $root/usr/bin/dir $root/usr/bin/vdir $root/usr/bin/dircolors
    1.42 +	status
    1.43 +}
    1.44 +
    1.45 +post_remove()
    1.46 +{
    1.47 +	ln -s /bin/busybox /bin/ls
    1.48 +	ln -s /bin/busybox /usr/bin/dir
    1.49 +	ln -s /bin/busybox /usr/bin/vdir
    1.50 +	ln -s /bin/busybox /usr/bin/dircolors
    1.51 +}