wok-current diff coreutils-disk/receipt @ rev 20108
Add vrrpd
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Oct 10 22:14:24 2017 +0200 (2017-10-10) |
parents | 6fab3264ba87 |
children | 9b6a3a5c1a07 |
line diff
1.1 --- a/coreutils-disk/receipt Fri Dec 25 15:23:46 2015 +0200 1.2 +++ b/coreutils-disk/receipt Tue Oct 10 22:14:24 2017 +0200 1.3 @@ -1,38 +1,51 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="coreutils-disk" 1.7 -VERSION="8.12" 1.8 +VERSION="8.25" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="GNU utilities that work with disks." 1.11 MAINTAINER="rcx@zoominternet.net" 1.12 LICENSE="GPL3" 1.13 -WEB_SITE="http://www.gnu.org/software/coreutils/" 1.14 +WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html" 1.15 + 1.16 WANTED="coreutils" 1.17 - 1.18 DEPENDS="glibc-base" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 -# 1.22 -# This is a special package for installed system or developer. We only take 1.23 -# a few things, as Busybox provides all the basic utilities, but not for compiling. 1.24 -# But DO NOT erase a Busybox applet, remove it before with pre_install rules. 1.25 -# 1.26 genpkg_rules() 1.27 { 1.28 - mkdir -p $fs/bin 1.29 - cp -a $install/usr/bin/df $fs/bin 1.30 - cp -a $install/usr/bin/stat $fs/bin 1.31 - cp -a $install/usr/bin/sync $fs/bin 1.32 + mandir="$fs/usr/share/man/man1" 1.33 + mkdir -p $mandir 1.34 1.35 - mkdir -p $fs/usr/bin 1.36 - cp -a $install/usr/bin/du $fs/usr/bin 1.37 - cp -a $install/usr/bin/truncate $fs/usr/bin 1.38 + while read i; do 1.39 + mkdir -p $fs$(dirname $i) 1.40 + cp -a $install$i $fs$i 1.41 + find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \; 1.42 + done <<EOT 1.43 +/bin/df 1.44 +/bin/sync 1.45 +/usr/bin/du 1.46 +/usr/bin/stat 1.47 +/usr/bin/truncate 1.48 +EOT 1.49 +} 1.50 + 1.51 +post_install() 1.52 +{ 1.53 + # Remove Busybox applets in order to not clash with ("/bin", "/sbin", 1.54 + # "/usr/bin" and "/usr/sbin" conflicts with the same filename) 1.55 + rm "$1/bin/stat" # /usr/bin/stat 1.56 } 1.57 1.58 post_remove() 1.59 { 1.60 - ln -s /bin/busybox "$1/bin/df" 1.61 - ln -s /bin/busybox "$1/bin/stat" 1.62 - ln -s /bin/busybox "$1/bin/sync" 1.63 - ln -s /bin/busybox "$1/usr/bin/du" 1.64 + # Restore all Busybox applets that have been replaced 1.65 + while read i; do 1.66 + busybox ln -s /bin/busybox "$1$i" 1.67 + done <<EOT 1.68 +/bin/df 1.69 +/bin/stat 1.70 +/bin/sync 1.71 +/usr/bin/du 1.72 +EOT 1.73 }