summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-devtools/perl/exiftool_13.42.bb (renamed from meta-oe/recipes-devtools/perl/exiftool_12.89.bb)11
1 files changed, 9 insertions, 2 deletions
diff --git a/meta-oe/recipes-devtools/perl/exiftool_12.89.bb b/meta-oe/recipes-devtools/perl/exiftool_13.42.bb
index 69a4f79815..5d97cf5838 100644
--- a/meta-oe/recipes-devtools/perl/exiftool_12.89.bb
+++ b/meta-oe/recipes-devtools/perl/exiftool_13.42.bb
@@ -7,10 +7,9 @@ LIC_FILES_CHKSUM = "file://perl-Image-ExifTool.spec;beginline=5;endline=5;md5=ff
7 7
8inherit cpan 8inherit cpan
9 9
10SRCREV = "e04534a40925354187e8432d44248229d774f34a" 10SRCREV = "a162a723be10dac03b3037f7cc64c1f9c480448e"
11SRC_URI = "git://github.com/exiftool/exiftool;protocol=https;branch=master" 11SRC_URI = "git://github.com/exiftool/exiftool;protocol=https;branch=master"
12 12
13
14RDEPENDS:${PN} = " \ 13RDEPENDS:${PN} = " \
15 perl \ 14 perl \
16 perl-module-list-util \ 15 perl-module-list-util \
@@ -19,3 +18,11 @@ RDEPENDS:${PN} = " \
19 perl-module-scalar-util \ 18 perl-module-scalar-util \
20 perl-module-compress-zlib \ 19 perl-module-compress-zlib \
21" 20"
21
22do_install:append() {
23 # Remove reference to TMPDIR [buildpaths]
24 sed -i -e 's,${TMPDIR},,g' ${D}${bindir}/exiftool
25
26 # Fix shebang and QA Issue [file-rdeps] to use target /usr/bin/env
27 sed -i -e '1s|^#!.*env perl|#!/usr/bin/env perl|' ${D}${bindir}/exiftool
28}