wok diff coreutils-file-format/receipt @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
parents d6ca18366f41
children 9b6a3a5c1a07
line diff
     1.1 --- a/coreutils-file-format/receipt	Mon Dec 21 02:53:09 2015 +0200
     1.2 +++ b/coreutils-file-format/receipt	Mon Nov 18 16:07:36 2019 +0100
     1.3 @@ -1,31 +1,39 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="coreutils-file-format"
     1.7 -VERSION="8.12"
     1.8 +VERSION="8.25"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="GNU utilities that format file contents."
    1.11  MAINTAINER="rcx@zoominternet.net"
    1.12  LICENSE="GPL3"
    1.13 -WEB_SITE="http://www.gnu.org/software/coreutils/"
    1.14 +WEB_SITE="https://www.gnu.org/software/coreutils/coreutils.html"
    1.15 +
    1.16  WANTED="coreutils"
    1.17 -
    1.18  DEPENDS="glibc-base"
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21 -#
    1.22 -# This is a special package for installed system or developer. We only take
    1.23 -# a few things, as Busybox provides all the basic utilities, but not for compiling.
    1.24 -# But DO NOT erase a Busybox applet, remove it before with pre_install rules.
    1.25 -#
    1.26  genpkg_rules()
    1.27  {
    1.28 -	mkdir -p $fs/usr/bin
    1.29 -	cp -a $install/usr/bin/fmt $fs/usr/bin
    1.30 -	cp -a $install/usr/bin/pr $fs/usr/bin
    1.31 -	cp -a $install/usr/bin/fold $fs/usr/bin
    1.32 +	mandir="$fs/usr/share/man/man1"
    1.33 +	mkdir -p $mandir
    1.34 +
    1.35 +	while read i; do
    1.36 +		mkdir -p $fs$(dirname $i)
    1.37 +		cp -a $install$i $fs$i
    1.38 +		find $install -name "$(basename $i).*" -exec cp -a \{\} $mandir \;
    1.39 +	done <<EOT
    1.40 +/usr/bin/fmt
    1.41 +/usr/bin/fold
    1.42 +/usr/bin/pr
    1.43 +EOT
    1.44  }
    1.45  
    1.46  post_remove()
    1.47  {
    1.48 -	ln -s /bin/busybox "$1/usr/bin/fold"
    1.49 +	# Restore all Busybox applets that have been replaced
    1.50 +	while read i; do
    1.51 +		busybox ln -s /bin/busybox "$1$i"
    1.52 +	done <<EOT
    1.53 +/usr/bin/fold
    1.54 +EOT
    1.55  }