wok rev 25265

updated readline and readline-dev (8.0 -> 8.1)
author Hans-G?nter Theisgen
date Fri Jul 15 09:07:46 2022 +0100 (22 months ago)
parents 0015d74c0b32
children 01627c411095
files readline-dev/receipt readline/description.txt readline/receipt
line diff
     1.1 --- a/readline-dev/receipt	Fri Jul 15 08:59:55 2022 +0100
     1.2 +++ b/readline-dev/receipt	Fri Jul 15 09:07:46 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="readline-dev"
     1.7 -VERSION="8.0"
     1.8 +VERSION="8.1"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="GNU readline - development files."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -15,8 +15,6 @@
    1.13  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.14  genpkg_rules()
    1.15  {
    1.16 -	mkdir -p $fs/usr/lib
    1.17 -
    1.18 -	cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.19 -	cp -a $install/usr/include	$fs/usr
    1.20 +	cook_copy_folders	include
    1.21 +	cook_copy_files		*.*a
    1.22  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/readline/description.txt	Fri Jul 15 09:07:46 2022 +0100
     2.3 @@ -0,0 +1,11 @@
     2.4 +The GNU Readline library provides a set of functions for use by applications
     2.5 +that allow users to edit command lines as they are typed in.
     2.6 +Both Emacs and vi editing modes are available.
     2.7 +The Readline library includes additional functions to maintain a list of
     2.8 +previously-entered command lines, to recall and perhaps reedit those lines,
     2.9 +and perform csh-like history expansion on previous commands.
    2.10 +
    2.11 +The history facilities are also placed into a separate library, the History
    2.12 +library, as part of the build process.
    2.13 +The History library may be used without Readline in applications which desire
    2.14 +its capabilities.
     3.1 --- a/readline/receipt	Fri Jul 15 08:59:55 2022 +0100
     3.2 +++ b/readline/receipt	Fri Jul 15 09:07:46 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="readline"
     3.7 -VERSION="8.0"
     3.8 +VERSION="8.1"
     3.9  CATEGORY="system-tools"
    3.10  SHORT_DESC="GNU readline."
    3.11  MAINTAINER="pankso@slitaz.org"
    3.12 @@ -32,14 +32,15 @@
    3.13  #	patch -Np1 -i $stuff/readline-6.3-upstream_fixes-3.patch
    3.14  	sed -i '/(MV)/d' Makefile*
    3.15  
    3.16 -	./configure --disable-install-examples $CONFIGURE_ARGS &&
    3.17 -	make -j 1 &&
    3.18 -	make DESTDIR=$DESTDIR install
    3.19 +	./configure				\
    3.20 +		--disable-install-examples	\
    3.21 +		$CONFIGURE_ARGS &&
    3.22 +	make &&
    3.23 +	make install DESTDIR=$DESTDIR
    3.24  }
    3.25  
    3.26  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.27  genpkg_rules()
    3.28  {
    3.29 -	mkdir -p $fs/usr/lib
    3.30 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.31 +	cook_copy_files	*.so*
    3.32  }