wok rev 20899

updated exiv2 and exiv2-dev (0.265 -> 0.27.0a)
author Hans-G?nter Theisgen
date Tue Feb 26 16:50:37 2019 +0100 (2019-02-26)
parents d7da2b03d39b
children baa7232f49c4
files exiv2-dev/receipt exiv2/receipt
line diff
     1.1 --- a/exiv2-dev/receipt	Tue Feb 26 15:59:27 2019 +0100
     1.2 +++ b/exiv2-dev/receipt	Tue Feb 26 16:50:37 2019 +0100
     1.3 @@ -1,17 +1,17 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="exiv2-dev"
     1.7 -VERSION="0.26"
     1.8 +VERSION="0.27.0a"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="exiv2 devel files"
    1.11  MAINTAINER="jozee@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="http://www.exiv2.org/"
    1.14 +
    1.15  WANTED="exiv2"
    1.16 -WEB_SITE="http://www.exiv2.org/"
    1.17 +DEPENDS="exiv2 pkg-config"
    1.18  HOST_ARCH="i486 arm"
    1.19  
    1.20 -DEPENDS="exiv2 pkg-config"
    1.21 -
    1.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.23  genpkg_rules()
    1.24  {
     2.1 --- a/exiv2/receipt	Tue Feb 26 15:59:27 2019 +0100
     2.2 +++ b/exiv2/receipt	Tue Feb 26 16:50:37 2019 +0100
     2.3 @@ -1,26 +1,29 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="exiv2"
     2.7 -VERSION="0.26"
     2.8 +VERSION="0.27.0a"
     2.9  CATEGORY="graphics"
    2.10  SHORT_DESC="Exif and Iptc metadata manipulation library and tools"
    2.11  MAINTAINER="jozee@slitaz.org"
    2.12  LICENSE="GPL2"
    2.13 -TARBALL="$PACKAGE-$VERSION-trunk.tar.gz"
    2.14  WEB_SITE="http://www.exiv2.org/"
    2.15 +
    2.16 +TARBALL="$PACKAGE-$VERSION-Source.tar.gz"
    2.17  WGET_URL="$WEB_SITE/builds/$TARBALL"
    2.18  HOST_ARCH="i486 arm"
    2.19  
    2.20  DEPENDS="expat zlib gcc-lib-base"
    2.21 -BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev"
    2.22 +BUILD_DEPENDS="cmake gcc-lib-base expat-dev zlib-dev"
    2.23  
    2.24  # Rules to configure and make the package.
    2.25  compile_rules()
    2.26  {
    2.27 -	./configure \
    2.28 -		--prefix=/usr \
    2.29 -		$CONFIGURE_ARGS &&
    2.30 -	make &&
    2.31 +	mkdir build
    2.32 +	cd build
    2.33 +	cmake .. -G "Unix Makefiles" \
    2.34 +		-DCMAKE_INSTALL_PREFIX=/usr &&
    2.35 +	cmake --build . &&
    2.36 +	make -j 1 &&
    2.37  	make DESTDIR=$DESTDIR install
    2.38  }
    2.39