wok diff exiv2/receipt @ rev 20962
updated getmail (4.41.0 -> 5.8)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Mar 04 17:38:05 2019 +0100 (2019-03-04) |
parents | cd48039e6658 |
children | 364099c9aff2 |
line diff
1.1 --- a/exiv2/receipt Thu Feb 15 11:57:02 2018 +0100 1.2 +++ b/exiv2/receipt Mon Mar 04 17:38:05 2019 +0100 1.3 @@ -1,26 +1,29 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="exiv2" 1.7 -VERSION="0.26" 1.8 +VERSION="0.27.0a" 1.9 CATEGORY="graphics" 1.10 SHORT_DESC="Exif and Iptc metadata manipulation library and tools" 1.11 MAINTAINER="jozee@slitaz.org" 1.12 LICENSE="GPL2" 1.13 -TARBALL="$PACKAGE-$VERSION-trunk.tar.gz" 1.14 WEB_SITE="http://www.exiv2.org/" 1.15 + 1.16 +TARBALL="$PACKAGE-$VERSION-Source.tar.gz" 1.17 WGET_URL="$WEB_SITE/builds/$TARBALL" 1.18 HOST_ARCH="i486 arm" 1.19 1.20 DEPENDS="expat zlib gcc-lib-base" 1.21 -BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev" 1.22 +BUILD_DEPENDS="cmake gcc-lib-base expat-dev zlib-dev" 1.23 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 - ./configure \ 1.28 - --prefix=/usr \ 1.29 - $CONFIGURE_ARGS && 1.30 - make && 1.31 + mkdir build 1.32 + cd build 1.33 + cmake .. -G "Unix Makefiles" \ 1.34 + -DCMAKE_INSTALL_PREFIX=/usr && 1.35 + cmake --build . && 1.36 + make -j 1 && 1.37 make DESTDIR=$DESTDIR install 1.38 } 1.39