wok-6.x diff coreutils-file-format/receipt @ rev 3694
Update: bzip2 (handle BusyBox symlinks)
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Thu Jul 16 09:41:09 2009 +0000 (2009-07-16) |
parents | |
children | 11129d96133c |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/coreutils-file-format/receipt Thu Jul 16 09:41:09 2009 +0000 1.3 @@ -0,0 +1,42 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="coreutils-file-format" 1.7 +VERSION="7.4" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="GNU utilities that format file contents." 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/usr/bin 1.24 + cp -a $_pkg/usr/bin/fmt $fs/usr/bin 1.25 + cp -a $_pkg/usr/bin/pr $fs/usr/bin 1.26 + cp -a $_pkg/usr/bin/fold $fs/usr/bin 1.27 +} 1.28 + 1.29 +# Pre and post install commands for Tazpkg. 1.30 +# We must remove all Busybox symlink before installing. 1.31 +# 1.32 +pre_install() 1.33 +{ 1.34 + local root 1.35 + root=$1 1.36 + echo "Processing pre-install commands..." 1.37 + echo -n "Removing all Busybox replaced utils... " 1.38 + rm -f $root/usr/bin/fold 1.39 + status 1.40 +} 1.41 + 1.42 +post_remove() 1.43 +{ 1.44 + ln -s /bin/busybox /usr/bin/fold 1.45 +}