wok rev 24741

updated libextractor and libextractor-dev (1.9 -> 1.11)
author Hans-G?nter Theisgen
date Wed Mar 16 10:23:10 2022 +0100 (2022-03-16)
parents 69d0a23c9258
children 83c8ab789fc1
files libextractor-dev/receipt libextractor/description.txt libextractor/receipt
line diff
     1.1 --- a/libextractor-dev/receipt	Wed Mar 16 10:07:05 2022 +0100
     1.2 +++ b/libextractor-dev/receipt	Wed Mar 16 10:23:10 2022 +0100
     1.3 @@ -1,23 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libextractor-dev"
     1.7 -VERSION="1.9"
     1.8 +VERSION="1.11"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Extract meta data from files of arbitrary type, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13  WEB_SITE="https://www.gnu.org/software/libextractor"
    1.14  
    1.15 +DEPENDS="libextractor pkg-config"
    1.16  WANTED="libextractor"
    1.17 -DEPENDS="libextractor pkg-config"
    1.18  
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.   
    1.20  genpkg_rules()                                      
    1.21  {
    1.22 -	mkdir -p $fs/usr/lib/libextractor
    1.23 -
    1.24 -	cp -a $install/usr/include		$fs/usr
    1.25 -	cp -a $install/usr/lib/*a		$fs/usr/lib
    1.26 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.27 -	cp -a $install/usr/lib/libextractor/*a	$fs/usr/lib/libextractor
    1.28 +	cook_copy_folders	include
    1.29 +	cook_copy_folders	pkgconfig
    1.30 +	cook_copy_files		*.*a
    1.31  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libextractor/description.txt	Wed Mar 16 10:23:10 2022 +0100
     2.3 @@ -0,0 +1,8 @@
     2.4 +GNU Libextractor is a library used to extract meta data from files.
     2.5 +The goal is to provide developers of file-sharing networks, browsers
     2.6 +or WWW-indexing bots with a universal library to obtain simple
     2.7 +keywords and meta data to match against queries and to show to users
     2.8 +instead of only relying on filenames.
     2.9 +Libextractor contains the shell command extract that, similar to the
    2.10 +well-known file command, can extract meta data from a file and print
    2.11 +the results to stdout.
     3.1 --- a/libextractor/receipt	Wed Mar 16 10:07:05 2022 +0100
     3.2 +++ b/libextractor/receipt	Wed Mar 16 10:23:10 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libextractor"
     3.7 -VERSION="1.9"
     3.8 +VERSION="1.11"
     3.9  CATEGORY="network"
    3.10  SHORT_DESC="Extract meta data from files of arbitrary type."
    3.11  MAINTAINER="pascal.bellard@slitaz.org"
    3.12 @@ -12,7 +12,8 @@
    3.13  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    3.14  
    3.15  DEPENDS="zlib"
    3.16 -BUILD_DEPENDS="flac-dev gettext lcms-dev libogg-dev libtool zlib-dev"
    3.17 +BUILD_DEPENDS="flac-dev gettext iso-codes jpeg-dev lcms-dev libogg-dev libtool
    3.18 +	zlib-dev"
    3.19  
    3.20  # What is the latest version available today?
    3.21  current_version()
    3.22 @@ -29,8 +30,8 @@
    3.23  		--mandir=/usr/share/man	\
    3.24  		--localstatedir=/var	\
    3.25  		$CONFIGURE_ARGS &&
    3.26 -	make -j 1 &&
    3.27 -	make DESTDIR=$DESTDIR install
    3.28 +	make &&
    3.29 +	make install DESTDIR=$DESTDIR
    3.30  }
    3.31  
    3.32  # Rules to gen a SliTaz package suitable for Tazpkg.   
    3.33 @@ -38,7 +39,7 @@
    3.34  {
    3.35  	mkdir -p $fs/usr/lib/libextractor
    3.36  
    3.37 -	cp -a $install/usr/bin			$fs/usr
    3.38 -	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    3.39 -	cp -a $install/usr/lib/libextractor/*.so* $fs/usr/lib/libextractor
    3.40 +	cp -a $install/usr/bin				$fs/usr
    3.41 +	cp -a $install/usr/lib/*.so*			$fs/usr/lib
    3.42 +	cp -a $install/usr/lib/libextractor/*.so*	$fs/usr/lib/libextractor
    3.43  }