mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
Pick patches from both PRs linked in issue mentioned in NVD report. (From OE-Core rev: e0ac318128b8f78efddc0b748b1db3e96873c532) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 327546cc0f0bdffcbb4be690ee0b9b469db64842) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.3 KiB
BlitzBasic
36 lines
1.3 KiB
BlitzBasic
SUMMARY = "Audio format Conversion library"
|
|
DESCRIPTION = "Library for reading and writing files containing sampled \
|
|
sound (such as MS Windows WAV and the Apple/SGI AIFF format) through \
|
|
one standard library interface."
|
|
HOMEPAGE = "https://libsndfile.github.io/libsndfile/"
|
|
DEPENDS = "flac libogg libvorbis"
|
|
SECTION = "libs/multimedia"
|
|
LICENSE = "LGPL-2.1-only"
|
|
|
|
SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/libsndfile-${PV}.tar.xz \
|
|
file://noopus.patch \
|
|
file://cve-2022-33065.patch \
|
|
file://CVE-2024-50612.patch \
|
|
file://CVE-2025-56226-01.patch \
|
|
file://CVE-2025-56226-02.patch \
|
|
"
|
|
GITHUB_BASE_URI = "https://github.com/libsndfile/libsndfile/releases/"
|
|
|
|
SRC_URI[sha256sum] = "3799ca9924d3125038880367bf1468e53a1b7e3686a934f098b7e1d286cdb80e"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=e77fe93202736b47c07035910f47974a"
|
|
|
|
CVE_PRODUCT = "libsndfile"
|
|
|
|
S = "${WORKDIR}/libsndfile-${PV}"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}"
|
|
PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib"
|
|
PACKAGECONFIG[regtest] = "--enable-sqlite,--disable-sqlite,sqlite3"
|
|
|
|
inherit autotools lib_package pkgconfig multilib_header github-releases
|
|
|
|
do_install:append() {
|
|
oe_multilib_header sndfile.h
|
|
}
|