wok annotate coreutils-file-output-full/receipt @ rev 25274
updated recordmydesktop (0.3.8.1 -> 0.4.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jul 18 13:57:40 2022 +0100 (2022-07-18) |
parents | 9b6a3a5c1a07 |
children |
rev | line source |
---|---|
rcx@3662 | 1 # SliTaz package receipt. |
rcx@3662 | 2 |
rcx@3662 | 3 PACKAGE="coreutils-file-output-full" |
Hans-G?nter@24437 | 4 VERSION="9.0" |
rcx@3662 | 5 CATEGORY="system-tools" |
rcx@3662 | 6 SHORT_DESC="GNU utilities that output entire files." |
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@24437 | 11 SUGGESTED="coreutils-lang" |
Hans-G?nter@22616 | 12 DEPENDS="glibc-base" |
pascal@14999 | 13 WANTED="coreutils" |
rcx@3662 | 14 |
rcx@3662 | 15 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3662 | 16 genpkg_rules() |
rcx@3662 | 17 { |
Hans-G?nter@24437 | 18 # according to https://doc.slitaz.org/en:cookbook:wok |
Hans-G?nter@24437 | 19 # Generally, the base packages contain no man, info or doc files |
Hans-G?nter@24437 | 20 # mandir="$fs/usr/share/man/man1" |
Hans-G?nter@24437 | 21 # mkdir -p $mandir |
rcx@3662 | 22 |
Hans-G?nter@22616 | 23 while read i |
Hans-G?nter@22616 | 24 do |
al@19215 | 25 mkdir -p $fs$(dirname $i) |
Hans-G?nter@22616 | 26 cp -a $install$i $fs$i |
Hans-G?nter@24437 | 27 # find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \; |
Hans-G?nter@22616 | 28 done <<EOT |
al@19215 | 29 /bin/cat |
al@19215 | 30 /usr/bin/base32 |
al@19215 | 31 /usr/bin/base64 |
al@19215 | 32 /usr/bin/nl |
al@19215 | 33 /usr/bin/od |
al@19215 | 34 /usr/bin/tac |
al@19215 | 35 EOT |
al@19215 | 36 } |
al@19215 | 37 |
al@19215 | 38 post_install() |
al@19215 | 39 { |
al@19215 | 40 # Remove Busybox applets in order to not clash with ("/bin", "/sbin", |
al@19215 | 41 # "/usr/bin" and "/usr/sbin" conflicts with the same filename) |
Hans-G?nter@24437 | 42 rm "$1/bin/base64" # /usr/bin/base64 |
rcx@3662 | 43 } |
rcx@3662 | 44 |
rcx@3662 | 45 post_remove() |
rcx@3662 | 46 { |
al@19215 | 47 # Restore all Busybox applets that have been replaced |
Hans-G?nter@22616 | 48 while read i |
Hans-G?nter@22616 | 49 do |
al@19215 | 50 busybox ln -s /bin/busybox "$1$i" |
Hans-G?nter@22616 | 51 done <<EOT |
al@19215 | 52 /bin/base64 |
al@19215 | 53 /bin/cat |
al@19215 | 54 /usr/bin/od |
al@19215 | 55 /usr/bin/tac |
al@19215 | 56 EOT |
rcx@3662 | 57 } |