wok diff exiv2/receipt @ rev 23069

scilab: update for hdf5
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 10 08:35:31 2020 +0100 (2020-03-10)
parents 364099c9aff2
children 5baa9d957a85
line diff
     1.1 --- a/exiv2/receipt	Thu Mar 28 14:01:40 2019 +0100
     1.2 +++ b/exiv2/receipt	Tue Mar 10 08:35:31 2020 +0100
     1.3 @@ -1,26 +1,28 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="exiv2"
     1.7 -VERSION="0.27.0a"
     1.8 +VERSION="0.27.2"
     1.9  CATEGORY="graphics"
    1.10 -SHORT_DESC="Exif and Iptc metadata manipulation library and tools"
    1.11 +SHORT_DESC="Exif and Iptc metadata manipulation library and tools."
    1.12  MAINTAINER="jozee@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14  WEB_SITE="https://www.exiv2.org/"
    1.15  
    1.16  TARBALL="$PACKAGE-$VERSION-Source.tar.gz"
    1.17 -WGET_URL="$WEB_SITE/builds/$TARBALL"
    1.18 +WGET_URL="${WEB_SITE}builds/$TARBALL"
    1.19 +
    1.20 +DEPENDS="expat gcc-lib-base zlib"
    1.21 +BUILD_DEPENDS="cmake expat-dev gcc-lib-base zlib-dev"
    1.22 +
    1.23  HOST_ARCH="i486 arm"
    1.24  
    1.25 -DEPENDS="expat zlib gcc-lib-base"
    1.26 -BUILD_DEPENDS="cmake gcc-lib-base expat-dev zlib-dev"
    1.27 -
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31  	mkdir build
    1.32  	cd build
    1.33 -	cmake .. -G "Unix Makefiles" \
    1.34 +	cmake ..				\
    1.35 +		-G "Unix Makefiles"		\
    1.36  		-DCMAKE_INSTALL_PREFIX=/usr &&
    1.37  	cmake --build . &&
    1.38  	make -j 1 &&
    1.39 @@ -31,6 +33,7 @@
    1.40  genpkg_rules()
    1.41  {
    1.42  	mkdir -p $fs/usr/lib
    1.43 -	cp -a $install/usr/bin $fs/usr
    1.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.45 +
    1.46 +	cp -a $install/usr/bin		$fs/usr
    1.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.48  }