mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
No longer used in generating packages Also creates a possible confusion with the recipe maintainer name. (From OE-Core rev: 9d5edd124b7dddb995ceddd79f8a7fc8cf44badf) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 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 \
|
|
"
|
|
GITHUB_BASE_URI = "https://github.com/libsndfile/libsndfile/releases/"
|
|
|
|
SRC_URI[sha256sum] = "0e30e7072f83dc84863e2e55f299175c7e04a5902ae79cfb99d4249ee8f6d60a"
|
|
|
|
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
|
|
}
|