wok rev 24739

updated libexif and libexif-dev (0.6.22 -> 0.6.24)
author Hans-G?nter Theisgen
date Wed Mar 16 09:57:52 2022 +0100 (2022-03-16)
parents 2c34d52f1eca
children 69d0a23c9258
files libexif-dev/receipt libexif/description.txt libexif/receipt
line diff
     1.1 --- a/libexif-dev/receipt	Wed Mar 16 09:48:35 2022 +0100
     1.2 +++ b/libexif-dev/receipt	Wed Mar 16 09:57:52 2022 +0100
     1.3 @@ -1,24 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libexif-dev"
     1.7 -VERSION="0.6.22"
     1.8 +VERSION="0.6.24"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Libexif - development files."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="LGPL2.1"
    1.13 -WEB_SITE="http://libexif.sourceforge.net/"
    1.14 +WEB_SITE="https://libexif.github.io/"
    1.15  
    1.16 +DEPENDS="libexif pkg-config"
    1.17  WANTED="libexif"
    1.18 -DEPENDS="libexif pkg-config"
    1.19  
    1.20  HOST_ARCH="i486 arm"
    1.21  
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
    1.25 -	mkdir -p $fs/usr/lib
    1.26 -
    1.27 -	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.28 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.29 -	cp -a $install/usr/include		$fs/usr
    1.30 +	get_dev_files
    1.31  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libexif/description.txt	Wed Mar 16 09:57:52 2022 +0100
     2.3 @@ -0,0 +1,2 @@
     2.4 +The libexif C EXIF library is a library written in pure portable C
     2.5 +and reads and writes EXIF metainformation from and to image files.
     3.1 --- a/libexif/receipt	Wed Mar 16 09:48:35 2022 +0100
     3.2 +++ b/libexif/receipt	Wed Mar 16 09:57:52 2022 +0100
     3.3 @@ -1,15 +1,15 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libexif"
     3.7 -VERSION="0.6.22"
     3.8 +VERSION="0.6.24"
     3.9  CATEGORY="system-tools"
    3.10  SHORT_DESC="Reads and writes EXIF metainformation from and to image files."
    3.11  MAINTAINER="pankso@slitaz.org"
    3.12  LICENSE="LGPL2.1"
    3.13 -WEB_SITE="http://libexif.sourceforge.net/"
    3.14 +WEB_SITE="https://libexif.github.io/"
    3.15  
    3.16 -TARBALL="$PACKAGE-$VERSION.tar.xz"
    3.17 -WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/$PACKAGE-${VERSION//./_}-release/$TARBALL"
    3.18 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    3.19 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    3.20  
    3.21  HOST_ARCH="i486 arm"
    3.22  
    3.23 @@ -22,18 +22,15 @@
    3.24  # Rules to configure and make the package.
    3.25  compile_rules()
    3.26  {
    3.27 -	ln -s /bin/sh /usr/bin/sh
    3.28  	./configure		\
    3.29  		--prefix=/usr	\
    3.30  		$CONFIGURE_ARGS &&
    3.31 -	make -j 1 &&
    3.32 -	make DESTDIR=$DESTDIR install
    3.33 -	rm /usr/bin/sh
    3.34 +	make &&
    3.35 +	make install DESTDIR=$DESTDIR
    3.36  }
    3.37  
    3.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.39  genpkg_rules()
    3.40  {
    3.41 -	mkdir -p $fs/usr/lib
    3.42 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.43 +	cook_copy_files	*.so*
    3.44  }