wok view coreutils-context-working/receipt @ rev 23589

updated pyvim (0.0.13 -> 2.0.24)
author Hans-G?nter Theisgen
date Tue Apr 07 14:49:59 2020 +0100 (2020-04-07)
parents 1d0123efe74c
children 3b252eb4d26a
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-context-working"
4 VERSION="8.31"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities related to the working context."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html"
11 DEPENDS="glibc-base"
12 WANTED="coreutils"
14 # Rules to gen a SliTaz package suitable for Tazpkg.
15 genpkg_rules()
16 {
17 mandir="$fs/usr/share/man/man1"
18 mkdir -p $mandir
20 while read i
21 do
22 mkdir -p $fs$(dirname $i)
23 cp -a $install$i $fs$i
24 find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \;
25 done <<EOT
26 /bin/pwd
27 /bin/stty
28 /usr/bin/printenv
29 /usr/bin/tty
30 EOT
31 }
33 post_install()
34 {
35 # Remove Busybox applets in order to not clash with ("/bin", "/sbin",
36 # "/usr/bin" and "/usr/sbin" conflicts with the same filename)
37 rm "$1/bin/printenv" # /usr/bin/printenv
38 }
40 post_remove()
41 {
42 # Restore all Busybox applets that have been replaced
43 while read i
44 do
45 busybox ln -s /bin/busybox "$1$i"
46 done <<EOT
47 /bin/printenv
48 /bin/pwd
49 /bin/stty
50 /usr/bin/tty
51 EOT
52 }