wok-next view coreutils-directory/receipt @ rev 14730

Up xorg-xf86-video-ati (7.1.0), xorg-xf86-video-fbdev (0.4.3), xorg-xf86-video-geode (2.11.14), xorg-xf86-video-i740 (1.3.4), xorg-xf86-video-neomagic (1.2.7), xorg-xf86-video-nv (2.1.20), xorg-xf86-video-s3 (0.6.5), xorg-xf86-video-trident (1.3.6), xorg-xf86-video-vesa (2.3.2), xorg-xf86-video-vmware (13.0.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 13 10:45:31 2013 +0200 (2013-06-13)
parents 6afc9676e679
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-directory"
4 VERSION="8.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that list directories."
7 MAINTAINER="rcx@zoominternet.net"
8 WEB_SITE="http://www.gnu.org/software/coreutils/"
9 DEPENDS="glibc-base libcap 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/ls $fs/bin
23 mkdir -p $fs/usr/bin
24 cp -a $_pkg/usr/bin/dir $fs/usr/bin
25 cp -a $_pkg/usr/bin/vdir $fs/usr/bin
26 cp -a $_pkg/usr/bin/dircolors $fs/usr/bin
27 }
29 # Pre and post install commands for Tazpkg.
30 # We must remove all Busybox symlink before installing.
31 #
32 pre_install()
33 {
34 local root
35 root=$1
36 echo "Processing pre-install commands..."
37 echo -n "Removing all Busybox replaced utils... "
38 rm -f $root/bin/ls $root/usr/bin/dir $root/usr/bin/vdir $root/usr/bin/dircolors
39 status
40 }
42 post_remove()
43 {
44 ln -s /bin/busybox $1/bin/ls
45 ln -s /bin/busybox $1/usr/bin/dir
46 ln -s /bin/busybox $1/usr/bin/vdir
47 ln -s /bin/busybox $1/usr/bin/dircolors
48 }