Wang Mingyu 2a19e17aa8
exiftool: upgrade 13.57 -> 13.58
Changelog:
===========
- Added a few new Nikon Z lenses
- Added a few new QuickTime MajorBrand values
- Added a new RAFCompression value
- Added undocumented -eh option (alias for -E/-escapeHTML)
- Decode timed GPS from INNOVV N2 TS videos
- Improved decoding of Canon ColorData for some models
- Changed the name of the RAFVersion tag to FirmwareVersion
- Removed conversion for Garmin FIT DeviceIndex values
- Properly parse XML CDATA and comment sections
- Fixed issue which could cause failed Garmin test on some systems

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-05-13 00:30:50 -07:00

29 lines
991 B
BlitzBasic

SUMMARY = "Exiftool"
DESCRIPTION = "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."
HOMEPAGE = "https://exiftool.org/"
SECTION = "libs"
LICENSE = "GPL-3.0-only"
LIC_FILES_CHKSUM = "file://perl-Image-ExifTool.spec;beginline=5;endline=5;md5=ffefffc98dab025cb49489bd4d88ee10"
inherit cpan
SRCREV = "38bdbace3037a89d2c332664fc60bddad118958a"
SRC_URI = "git://github.com/exiftool/exiftool;protocol=https;branch=master;tag=${PV}"
RDEPENDS:${PN} = " \
perl \
perl-module-list-util \
perl-module-overload \
perl-module-file-glob \
perl-module-scalar-util \
perl-module-compress-zlib \
"
do_install:append() {
# Remove reference to TMPDIR [buildpaths]
sed -i -e 's,${TMPDIR},,g' ${D}${bindir}/exiftool
# Fix shebang and QA Issue [file-rdeps] to use target /usr/bin/env
sed -i -e '1s|^#!.*env perl|#!/usr/bin/env perl|' ${D}${bindir}/exiftool
}