wok view coreutils-disk/receipt @ rev 23181

updated miniupnpd (2.0 -> 2.1)
author Hans-G?nter Theisgen
date Thu Mar 19 16:04:21 2020 +0100 (2020-03-19)
parents 1d0123efe74c
children 3b252eb4d26a
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-disk"
4 VERSION="8.31"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU utilities that work with disks."
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/df
27 /bin/sync
28 /usr/bin/du
29 /usr/bin/stat
30 /usr/bin/truncate
31 EOT
32 }
34 post_install()
35 {
36 # Remove Busybox applets in order to not clash with ("/bin", "/sbin",
37 # "/usr/bin" and "/usr/sbin" conflicts with the same filename)
38 rm "$1/bin/stat" # /usr/bin/stat
39 }
41 post_remove()
42 {
43 # Restore all Busybox applets that have been replaced
44 while read i
45 do
46 busybox ln -s /bin/busybox "$1$i"
47 done <<EOT
48 /bin/df
49 /bin/stat
50 /bin/sync
51 /usr/bin/du
52 EOT
53 }