mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Changelog: ============ - Added read support for Kandao KVAR files - Added a few new Panasonic tags - Added a new XMP-crs tag - Added a few new Matroska tags - Added a few values related to the new RAW file types for the Sony ILCE-7M5 - Decode a few new PhaseOne tags - Decode timed GPS and other metadata from Kandao MP4 videos - Improvements to family 1 and 5 groups for tags in Matroska videos, and prioritize top-level tags when duplicates exist - Assume a default TimecodeScale of 1ms for MKV videos - Patched to avoid runtime warning when parsing corrupted QuickTime data - Fixed decoding of ShutterCount for Sony ILCE-7M Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.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 = "aa4baf5c71d92e5dc9a077ee24fcc4fd478936c1"
|
|
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
|
|
}
|