mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
20f49f4e9e
Changelog: =============== - Security update - Added NewUUID Extra tag - Added a new Canon RF lens - Added config_files/novelty.config to the distribution - Decode tags from the Sony ILCE-7RM6 - Decode a new FujiFilm tag - Decode a few more DJI protobuf tags - Decode a new Ricoh Pentax tag - Issue Error instead of Warning when writing XMP with some problems which could cause loss of data - Improved error message when reading wrongly encoded CSV or JSON file - Enhanced -config option to allow piped input with "-config -" - Enhanced -validate option to do more strict checking of EXIF-for-XMP tags - Patched -sort option avoid inconsistent output ordering of same-named tags - Patched Composite SubSec date/time tags to specify the EXIF group for the SubSec and OffsetTime tags upon which they are based (avoids non-standard XMP tags from being incorrectly used here) - Fixed bug in -diff feature when finding differences for specific tags and a specified tag was missing from the source file Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
29 lines
991 B
BlitzBasic
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 = "2200871d9cef988051d2a99d67df3bda6cbb30a8"
|
|
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
|
|
}
|