# HG changeset patch # User Hans-G?nter Theisgen # Date 1551196237 -3600 # Node ID 37d9b4cadcbe5a8716715a507c286429d30c5f8f # Parent d7da2b03d39b4d8ad6a195b3f28cdd3ac513110a updated exiv2 and exiv2-dev (0.265 -> 0.27.0a) diff -r d7da2b03d39b -r 37d9b4cadcbe exiv2-dev/receipt --- a/exiv2-dev/receipt Tue Feb 26 15:59:27 2019 +0100 +++ b/exiv2-dev/receipt Tue Feb 26 16:50:37 2019 +0100 @@ -1,17 +1,17 @@ # SliTaz package receipt. PACKAGE="exiv2-dev" -VERSION="0.26" +VERSION="0.27.0a" CATEGORY="development" SHORT_DESC="exiv2 devel files" MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://www.exiv2.org/" + WANTED="exiv2" -WEB_SITE="http://www.exiv2.org/" +DEPENDS="exiv2 pkg-config" HOST_ARCH="i486 arm" -DEPENDS="exiv2 pkg-config" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { diff -r d7da2b03d39b -r 37d9b4cadcbe exiv2/receipt --- a/exiv2/receipt Tue Feb 26 15:59:27 2019 +0100 +++ b/exiv2/receipt Tue Feb 26 16:50:37 2019 +0100 @@ -1,26 +1,29 @@ # SliTaz package receipt. PACKAGE="exiv2" -VERSION="0.26" +VERSION="0.27.0a" CATEGORY="graphics" SHORT_DESC="Exif and Iptc metadata manipulation library and tools" MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" -TARBALL="$PACKAGE-$VERSION-trunk.tar.gz" WEB_SITE="http://www.exiv2.org/" + +TARBALL="$PACKAGE-$VERSION-Source.tar.gz" WGET_URL="$WEB_SITE/builds/$TARBALL" HOST_ARCH="i486 arm" DEPENDS="expat zlib gcc-lib-base" -BUILD_DEPENDS="gcc-lib-base expat-dev zlib-dev" +BUILD_DEPENDS="cmake gcc-lib-base expat-dev zlib-dev" # Rules to configure and make the package. compile_rules() { - ./configure \ - --prefix=/usr \ - $CONFIGURE_ARGS && - make && + mkdir build + cd build + cmake .. -G "Unix Makefiles" \ + -DCMAKE_INSTALL_PREFIX=/usr && + cmake --build . && + make -j 1 && make DESTDIR=$DESTDIR install }