wok-6.x annotate coreutils-disk/receipt @ rev 24313
Add some current_version
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jan 21 10:59:24 2022 +0000 (2022-01-21) |
parents | 1d0123efe74c |
children | 3b252eb4d26a |
rev | line source |
---|---|
rcx@3662 | 1 # SliTaz package receipt. |
rcx@3662 | 2 |
rcx@3662 | 3 PACKAGE="coreutils-disk" |
Hans-G?nter@22616 | 4 VERSION="8.31" |
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 |
Hans-G?nter@22616 | 11 DEPENDS="glibc-base" |
pascal@14999 | 12 WANTED="coreutils" |
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 |
Hans-G?nter@22616 | 20 while read i |
Hans-G?nter@22616 | 21 do |
al@19215 | 22 mkdir -p $fs$(dirname $i) |
Hans-G?nter@22616 | 23 cp -a $install$i $fs$i |
al@19215 | 24 find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \; |
Hans-G?nter@22616 | 25 done <<EOT |
al@19215 | 26 /bin/df |
al@19215 | 27 /bin/sync |
al@19215 | 28 /usr/bin/du |
al@19215 | 29 /usr/bin/stat |
al@19215 | 30 /usr/bin/truncate |
al@19215 | 31 EOT |
al@19215 | 32 } |
al@19215 | 33 |
al@19215 | 34 post_install() |
al@19215 | 35 { |
al@19215 | 36 # Remove Busybox applets in order to not clash with ("/bin", "/sbin", |
al@19215 | 37 # "/usr/bin" and "/usr/sbin" conflicts with the same filename) |
al@19215 | 38 rm "$1/bin/stat" # /usr/bin/stat |
rcx@3662 | 39 } |
rcx@3662 | 40 |
rcx@3662 | 41 post_remove() |
rcx@3662 | 42 { |
al@19215 | 43 # Restore all Busybox applets that have been replaced |
Hans-G?nter@22616 | 44 while read i |
Hans-G?nter@22616 | 45 do |
al@19215 | 46 busybox ln -s /bin/busybox "$1$i" |
Hans-G?nter@22616 | 47 done <<EOT |
al@19215 | 48 /bin/df |
al@19215 | 49 /bin/stat |
al@19215 | 50 /bin/sync |
al@19215 | 51 /usr/bin/du |
al@19215 | 52 EOT |
rcx@3662 | 53 } |