meta-openembedded/meta-oe/recipes-devtools/perl/exiftool_13.43.bb
Wang Mingyu 1aaf6cc19b
exiftool: upgrade 13.42 -> 13.43
Changelog:
============
- Added support for a couple of new Android QuickTime Keys tags
- Added date/time formatting for RIFF DateCreated
- Added ability to read/write (but not create/delete) the HEIF Mirroring tag
- Added a new SonyModelID
- Added a new Canon LensType
- Decode ShutterCount for the Canon EOS R6 Mark III
- Decode another Samsung trailer tag
- Convert invalid Panasonic AFPointPosition to 'n/a'
- Fixed issue extracting timed GPS from some Wolfbox G900 MP4 videos

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-12-09 09:08:15 -08: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 = "dbd6def5620f4d7e4ab02d9ee5de498263ea73c1"
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
}