mirror of
https://git.yoctoproject.org/poky
synced 2026-06-04 02:00:04 +00:00
1fbbdc3528
(From OE-Core rev: 2c25bdd3624002f04be2cf188d8df5d3a0b48dcb) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 46d837442ab216941df2d02f60c69155463e02d8) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
743 B
BlitzBasic
22 lines
743 B
BlitzBasic
SUMMARY = "Library for reading extended image information (EXIF) from JPEG files"
|
|
HOMEPAGE = "https://libexif.github.io/"
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad"
|
|
|
|
def version_underscore(v):
|
|
return "_".join(v.split("."))
|
|
|
|
SRC_URI = "https://github.com/libexif/libexif/releases/download/libexif-${@version_underscore("${PV}")}-release/libexif-${PV}.tar.xz \
|
|
file://CVE-2020-0198.patch \
|
|
file://CVE-2020-0452.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "5048f1c8fc509cc636c2f97f4b40c293338b6041a5652082d5ee2cf54b530c56"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/libexif/libexif/releases/"
|
|
|
|
inherit autotools gettext
|
|
|
|
EXTRA_OECONF += "--disable-docs"
|