wok diff pcre2/receipt @ rev 23999

syslinux/iso2exe: read isolinux.cfg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 12 07:47:12 2021 +0000 (2021-01-12)
parents 18de4fe65c9c
children 080c1dff8494
line diff
     1.1 --- a/pcre2/receipt	Sat Jun 01 14:42:22 2019 +0100
     1.2 +++ b/pcre2/receipt	Tue Jan 12 07:47:12 2021 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="pcre2"
     1.7 -VERSION="10.32"
     1.8 +VERSION="10.34"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Perl 5 Compatible Regular Expression 2, library."
    1.11  MAINTAINER="al.bobylev@gmail.com"
    1.12 @@ -9,7 +9,6 @@
    1.13  WEB_SITE="https://www.pcre.org/"
    1.14  
    1.15  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 -WGET_URL="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$TARBALL"
    1.17  WGET_URL="$SF_MIRROR/pcre/$TARBALL"
    1.18  
    1.19  HOST_ARCH="i486 arm"
    1.20 @@ -27,15 +26,16 @@
    1.21  	make install
    1.22  
    1.23  	find $install/usr/share/man -type f -exec gzip -9 \{\} \;
    1.24 -	for i in $(find $install/usr/share/man -type l); do
    1.25 +	for i in $(find $install/usr/share/man -type l)
    1.26 +	  do
    1.27  		dest=$(readlink $i)
    1.28  		rm $i; ln -s $dest.gz $i.gz
    1.29 -	done
    1.30 +	  done
    1.31  }
    1.32  
    1.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.34  genpkg_rules()
    1.35  {
    1.36  	mkdir -p $fs/usr/lib
    1.37 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.38 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.39  }