wok view coreutils-numeric/receipt @ rev 23874

squidclamav: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 25 19:42:45 2020 +0000 (2020-06-25)
parents 1d0123efe74c
children 3b252eb4d26a
line source
1 # SliTaz package receipt.
3 PACKAGE="coreutils-numeric"
4 VERSION="8.31"
5 CATEGORY="system-tools"
6 SHORT_DESC="GNU numeric utilities."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html"
11 DEPENDS="glibc-base gmp"
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 /usr/bin/factor
27 /usr/bin/seq
28 EOT
29 }
31 post_remove()
32 {
33 # Restore all Busybox applets that have been replaced
34 while read i
35 do
36 busybox ln -s /bin/busybox "$1$i"
37 done <<EOT
38 /usr/bin/seq
39 EOT
40 }