wok-6.x annotate coreutils-file-special/receipt @ rev 22642
updated debootstrap (1.0.48 -> 1.0.116)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jan 14 07:46:35 2020 +0100 (2020-01-14) |
parents | 1d0123efe74c |
children | 82d54eca72be |
rev | line source |
---|---|
rcx@3662 | 1 # SliTaz package receipt. |
rcx@3662 | 2 |
rcx@3662 | 3 PACKAGE="coreutils-file-special" |
Hans-G?nter@22616 | 4 VERSION="8.31" |
rcx@3662 | 5 CATEGORY="system-tools" |
rcx@3662 | 6 SHORT_DESC="GNU utilities that work with special file types." |
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/ln |
al@19215 | 27 /bin/mkdir |
al@19215 | 28 /bin/mknod |
al@19215 | 29 /bin/rmdir |
al@19215 | 30 /usr/bin/link |
al@19215 | 31 /usr/bin/mkfifo |
al@19215 | 32 /usr/bin/mktemp |
al@19215 | 33 /usr/bin/readlink |
al@19215 | 34 /usr/bin/realpath |
al@19215 | 35 /usr/bin/unlink |
al@19215 | 36 EOT |
rcx@3662 | 37 } |
rcx@3662 | 38 |
al@19215 | 39 post_install() |
rcx@3684 | 40 { |
al@19215 | 41 # Remove Busybox applets in order to not clash with ("/bin", "/sbin", |
al@19215 | 42 # "/usr/bin" and "/usr/sbin" conflicts with the same filename) |
al@19215 | 43 rm "$1/bin/mktemp" # /usr/bin/mktemp |
rcx@3684 | 44 } |
al@18741 | 45 |
rcx@3662 | 46 post_remove() |
rcx@3662 | 47 { |
al@19215 | 48 # Restore all Busybox applets that have been replaced |
Hans-G?nter@22616 | 49 while read i |
Hans-G?nter@22616 | 50 do |
al@19215 | 51 busybox ln -s /bin/busybox "$1$i" |
Hans-G?nter@22616 | 52 done <<EOT |
al@19215 | 53 /bin/ln |
al@19215 | 54 /bin/mkdir |
al@19215 | 55 /bin/mknod |
al@19215 | 56 /bin/mktemp |
al@19215 | 57 /bin/rmdir |
al@19215 | 58 /usr/bin/mkfifo |
al@19215 | 59 /usr/bin/realpath |
al@19215 | 60 EOT |
rcx@3662 | 61 } |