wok rev 24528
updated exiv2 and exiv2-dev (0.27.3 -> 0.27.5)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Feb 23 07:22:56 2022 +0100 (2022-02-23) |
parents | a4e0f9035e33 |
children | f38ee01eaf10 |
files | exiftool/description.txt exiv2-dev/receipt exiv2/description.txt exiv2/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/exiftool/description.txt Wed Feb 23 07:22:56 2022 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +ExifTool is a platform-independent Perl library plus a command-line 1.5 +application for reading, writing and editing meta information in a 1.6 +wide variety of files. 1.7 +ExifTool supports many different metadata formats including EXIF, 1.8 +GPS, IPTC, XMP, JFIF, GeoTIFF, ICC Profile, Photoshop IRB, FlashPix, 1.9 +AFCP and ID3, Lyrics3, as well as the maker notes of many digital 1.10 +cameras by Canon, Casio, DJI, FLIR, FujiFilm, GE, GoPro, HP, 1.11 +JVC/Victor, Kodak, Leaf, Minolta/Konica-Minolta, Motorola, Nikon, 1.12 +Nintendo, Olympus/Epson, Panasonic/Leica, Pentax/Asahi, Phase One, 1.13 +Reconyx, Ricoh, Samsung, Sanyo, Sigma/Foveon and Sony.
2.1 --- a/exiv2-dev/receipt Wed Feb 23 07:04:41 2022 +0100 2.2 +++ b/exiv2-dev/receipt Wed Feb 23 07:22:56 2022 +0100 2.3 @@ -1,9 +1,9 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="exiv2-dev" 2.7 -VERSION="0.27.3" 2.8 +VERSION="0.27.5" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="exiv2 development files." 2.11 +SHORT_DESC="Exiv2 development files." 2.12 MAINTAINER="jozee@slitaz.org" 2.13 LICENSE="GPL2" 2.14 WEB_SITE="https://www.exiv2.org/" 2.15 @@ -16,9 +16,7 @@ 2.16 # Rules to gen a SliTaz package suitable for Tazpkg. 2.17 genpkg_rules() 2.18 { 2.19 - mkdir -p $fs/usr/lib 2.20 - 2.21 - cp -a $install/usr/lib/*.a $fs/usr/lib 2.22 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 2.23 - cp -a $install/usr/include $fs/usr 2.24 + cook_copy_folders include 2.25 + cook_copy_folders pkgconfig 2.26 + cook_copy_files *.a 2.27 }
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/exiv2/description.txt Wed Feb 23 07:22:56 2022 +0100 3.3 @@ -0,0 +1,5 @@ 3.4 +Exiv2 is a Cross-platform C++ library and a command line utility 3.5 +to manage image metadata. 3.6 +It provides fast and easy read and write access to the Exif, IPTC 3.7 +and XMP metadata and the ICC Profile embedded within digital images 3.8 +in various formats.
4.1 --- a/exiv2/receipt Wed Feb 23 07:04:41 2022 +0100 4.2 +++ b/exiv2/receipt Wed Feb 23 07:22:56 2022 +0100 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="exiv2" 4.7 -VERSION="0.27.3" 4.8 +VERSION="0.27.5" 4.9 CATEGORY="graphics" 4.10 SHORT_DESC="Exif and Iptc metadata manipulation library and tools." 4.11 MAINTAINER="jozee@slitaz.org" 4.12 @@ -26,21 +26,19 @@ 4.13 # Rules to configure and make the package. 4.14 compile_rules() 4.15 { 4.16 - mkdir build 4.17 - cd build 4.18 - cmake .. \ 4.19 + mkdir _build && 4.20 + cd _build && 4.21 + cmake .. \ 4.22 -G "Unix Makefiles" \ 4.23 - -DCMAKE_INSTALL_PREFIX=/usr && 4.24 - cmake --build . && 4.25 - make -j 1 && 4.26 - make DESTDIR=$DESTDIR install 4.27 + -D CMAKE_INSTALL_PREFIX=/usr && 4.28 + cmake --build . && 4.29 + make && 4.30 + make install DESTDIR=$DESTDIR 4.31 } 4.32 4.33 # Rules to gen a SliTaz package suitable for Tazpkg. 4.34 genpkg_rules() 4.35 { 4.36 - mkdir -p $fs/usr/lib 4.37 - 4.38 - cp -a $install/usr/bin $fs/usr 4.39 - cp -a $install/usr/lib/*.so* $fs/usr/lib 4.40 + cook_copy_folders bin 4.41 + cook_copy_files *.so* 4.42 }