wok view coreutils-operations/receipt @ rev 4514

Up:gutenprint; Add gutenprint-dev
author Rohit Joshi <jozee@slitaz.org>
date Thu Nov 26 12:07:22 2009 +0000 (2009-11-26)
parents 11129d96133c
children 614e0edaed02
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"
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/rm $fs/bin
26 mkdir -p $fs/usr/bin
27 cp -a $_pkg/usr/bin/install $fs/usr/bin
28 cp -a $_pkg/usr/bin/shred $fs/usr/bin
29 }
31 # Pre and post install commands for Tazpkg.
32 # We must remove all Busybox symlink before installing.
33 #
34 pre_install()
35 {
36 local root
37 root=$1
38 echo "Processing pre-install commands..."
39 echo -n "Removing all Busybox replaced utils... "
40 rm -f $root/bin/dd $root/bin/mv
41 rm -f $root/usr/bin/install $root/usr/bin/shred
42 # Dont remove cp/rm or the installation will fail because tazpkg use
43 # cp and rm during the process.
44 #
45 #rm -f $root/bin/cp $root/bin/rm
46 status
47 }
49 post_remove()
50 {
51 ln -s /bin/busybox /bin/cp
52 ln -s /bin/busybox /bin/dd
53 ln -s /bin/busybox /bin/mv
54 ln -s /bin/busybox /bin/rm
55 ln -s /bin/busybox /usr/bin/install
56 ln -s /bin/busybox /usr/bin/shred
57 }