# HG changeset patch # User Hans-G?nter Theisgen # Date 1645597376 -3600 # Node ID b2a37165af08ccb73f7224f5f31babcaf37f5083 # Parent a4e0f9035e3358af15e3ffdb1a46e2d895fbc44e updated exiv2 and exiv2-dev (0.27.3 -> 0.27.5) diff -r a4e0f9035e33 -r b2a37165af08 exiftool/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/exiftool/description.txt Wed Feb 23 07:22:56 2022 +0100 @@ -0,0 +1,10 @@ +ExifTool is a platform-independent Perl library plus a command-line +application for reading, writing and editing meta information in a +wide variety of files. +ExifTool supports many different metadata formats including EXIF, +GPS, IPTC, XMP, JFIF, GeoTIFF, ICC Profile, Photoshop IRB, FlashPix, +AFCP and ID3, Lyrics3, as well as the maker notes of many digital +cameras by Canon, Casio, DJI, FLIR, FujiFilm, GE, GoPro, HP, +JVC/Victor, Kodak, Leaf, Minolta/Konica-Minolta, Motorola, Nikon, +Nintendo, Olympus/Epson, Panasonic/Leica, Pentax/Asahi, Phase One, +Reconyx, Ricoh, Samsung, Sanyo, Sigma/Foveon and Sony. diff -r a4e0f9035e33 -r b2a37165af08 exiv2-dev/receipt --- a/exiv2-dev/receipt Wed Feb 23 07:04:41 2022 +0100 +++ b/exiv2-dev/receipt Wed Feb 23 07:22:56 2022 +0100 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="exiv2-dev" -VERSION="0.27.3" +VERSION="0.27.5" CATEGORY="development" -SHORT_DESC="exiv2 development files." +SHORT_DESC="Exiv2 development files." MAINTAINER="jozee@slitaz.org" LICENSE="GPL2" WEB_SITE="https://www.exiv2.org/" @@ -16,9 +16,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*.a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.a } diff -r a4e0f9035e33 -r b2a37165af08 exiv2/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/exiv2/description.txt Wed Feb 23 07:22:56 2022 +0100 @@ -0,0 +1,5 @@ +Exiv2 is a Cross-platform C++ library and a command line utility +to manage image metadata. +It provides fast and easy read and write access to the Exif, IPTC +and XMP metadata and the ICC Profile embedded within digital images +in various formats. diff -r a4e0f9035e33 -r b2a37165af08 exiv2/receipt --- a/exiv2/receipt Wed Feb 23 07:04:41 2022 +0100 +++ b/exiv2/receipt Wed Feb 23 07:22:56 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="exiv2" -VERSION="0.27.3" +VERSION="0.27.5" CATEGORY="graphics" SHORT_DESC="Exif and Iptc metadata manipulation library and tools." MAINTAINER="jozee@slitaz.org" @@ -26,21 +26,19 @@ # Rules to configure and make the package. compile_rules() { - mkdir build - cd build - cmake .. \ + mkdir _build && + cd _build && + cmake .. \ -G "Unix Makefiles" \ - -DCMAKE_INSTALL_PREFIX=/usr && - cmake --build . && - make -j 1 && - make DESTDIR=$DESTDIR install + -D CMAKE_INSTALL_PREFIX=/usr && + cmake --build . && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }