wok view coreutils-operations/receipt @ rev 3975

Add python-pyrex (Language for Writing Python Extension Modules)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Aug 27 13:31:03 2009 +0200 (2009-08-27)
parents
children 11129d96133c
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-operations"
4 VERSION="7.4"
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/cp $root/bin/dd $root/bin/mv $root/bin/rm
41 rm -f $root/usr/bin/install $root/usr/bin/shred
42 status
43 }
45 post_remove()
46 {
47 ln -s /bin/busybox /bin/cp
48 ln -s /bin/busybox /bin/dd
49 ln -s /bin/busybox /bin/mv
50 ln -s /bin/busybox /bin/rm
51 ln -s /bin/busybox /usr/bin/install
52 ln -s /bin/busybox /usr/bin/shred
53 }