wok-current annotate 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 |
rev | line source |
---|---|
rcx@3662 | 1 # SliTaz package receipt. |
rcx@3662 | 2 |
rcx@3662 | 3 PACKAGE="coreutils-disk" |
al@19215 | 4 VERSION="8.25" |
rcx@3662 | 5 CATEGORY="system-tools" |
rcx@3662 | 6 SHORT_DESC="GNU utilities that work with disks." |
rcx@3662 | 7 MAINTAINER="rcx@zoominternet.net" |
pascal@14999 | 8 LICENSE="GPL3" |
al@19215 | 9 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html" |
al@19215 | 10 |
pascal@14999 | 11 WANTED="coreutils" |
rcx@3662 | 12 DEPENDS="glibc-base" |
rcx@3662 | 13 |
rcx@3662 | 14 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3662 | 15 genpkg_rules() |
rcx@3662 | 16 { |
al@19215 | 17 mandir="$fs/usr/share/man/man1" |
al@19215 | 18 mkdir -p $mandir |
rcx@3662 | 19 |
al@19215 | 20 while read i; do |
al@19215 | 21 mkdir -p $fs$(dirname $i) |
al@19215 | 22 cp -a $install$i $fs$i |
al@19215 | 23 find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \; |
al@19215 | 24 done <<EOT |
al@19215 | 25 /bin/df |
al@19215 | 26 /bin/sync |
al@19215 | 27 /usr/bin/du |
al@19215 | 28 /usr/bin/stat |
al@19215 | 29 /usr/bin/truncate |
al@19215 | 30 EOT |
al@19215 | 31 } |
al@19215 | 32 |
al@19215 | 33 post_install() |
al@19215 | 34 { |
al@19215 | 35 # Remove Busybox applets in order to not clash with ("/bin", "/sbin", |
al@19215 | 36 # "/usr/bin" and "/usr/sbin" conflicts with the same filename) |
al@19215 | 37 rm "$1/bin/stat" # /usr/bin/stat |
rcx@3662 | 38 } |
rcx@3662 | 39 |
rcx@3662 | 40 post_remove() |
rcx@3662 | 41 { |
al@19215 | 42 # Restore all Busybox applets that have been replaced |
al@19215 | 43 while read i; do |
al@19215 | 44 busybox ln -s /bin/busybox "$1$i" |
al@19215 | 45 done <<EOT |
al@19215 | 46 /bin/df |
al@19215 | 47 /bin/stat |
al@19215 | 48 /bin/sync |
al@19215 | 49 /usr/bin/du |
al@19215 | 50 EOT |
rcx@3662 | 51 } |