wok-current diff coreutils-context-system/receipt @ rev 3914
Upgrade: lxpanel (0.5.2 to 0.5.3)
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Tue Aug 18 09:06:36 2009 +0000 (2009-08-18) |
parents | |
children | 11129d96133c |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/coreutils-context-system/receipt Tue Aug 18 09:06:36 2009 +0000 1.3 @@ -0,0 +1,51 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="coreutils-context-system" 1.7 +VERSION="7.4" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="GNU utilities related to the system context." 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/date $fs/bin 1.25 + cp -a $_pkg/usr/bin/uname $fs/bin 1.26 + 1.27 + mkdir -p $fs/usr/bin 1.28 + cp -a $_pkg/usr/bin/chcon $fs/usr/bin 1.29 + cp -a $_pkg/usr/bin/runcon $fs/usr/bin 1.30 + cp -a $_pkg/usr/bin/hostid $fs/usr/bin 1.31 + cp -a $_pkg/usr/bin/uptime $fs/usr/bin 1.32 +} 1.33 + 1.34 +# Pre and post install commands for Tazpkg. 1.35 +# We must remove all Busybox symlink before installing. 1.36 +# 1.37 +pre_install() 1.38 +{ 1.39 + local root 1.40 + root=$1 1.41 + echo "Processing pre-install commands..." 1.42 + echo -n "Removing all Busybox replaced utils... " 1.43 + rm -f $root/bin/date $root/bin/uname 1.44 + rm -f $root/usr/bin/hostid $root/usr/bin/uptime 1.45 + status 1.46 +} 1.47 + 1.48 +post_remove() 1.49 +{ 1.50 + ln -s /bin/busybox /bin/date 1.51 + ln -s /bin/busybox /bin/uname 1.52 + ln -s /bin/busybox /usr/bin/hostid 1.53 + ln -s /bin/busybox /usr/bin/uptime 1.54 +}