wok-current annotate coreutils-character/receipt @ rev 22928
updated help2man (1.47.8 -> 1.47.12)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Feb 26 15:07:39 2020 +0100 (2020-02-26) |
parents | 1d0123efe74c |
children | 3b252eb4d26a |
rev | line source |
---|---|
rcx@3662 | 1 # SliTaz package receipt. |
rcx@3662 | 2 |
rcx@3662 | 3 PACKAGE="coreutils-character" |
Hans-G?nter@22616 | 4 VERSION="8.31" |
rcx@3662 | 5 CATEGORY="system-tools" |
rcx@3662 | 6 SHORT_DESC="GNU utilities that operate on characters." |
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 |
al@19215 | 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 /usr/bin/expand |
al@19215 | 27 /usr/bin/tr |
al@19215 | 28 /usr/bin/unexpand |
al@19215 | 29 EOT |
rcx@3662 | 30 } |
rcx@3662 | 31 |
rcx@3662 | 32 post_remove() |
rcx@3662 | 33 { |
al@19215 | 34 # Restore all Busybox applets that have been replaced |
Hans-G?nter@22616 | 35 while read i |
Hans-G?nter@22616 | 36 do |
al@19215 | 37 busybox ln -s /bin/busybox "$1$i" |
Hans-G?nter@22616 | 38 done <<EOT |
al@19215 | 39 /usr/bin/expand |
al@19215 | 40 /usr/bin/tr |
al@19215 | 41 /usr/bin/unexpand |
al@19215 | 42 EOT |
rcx@3662 | 43 } |