mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 15:32:13 +02:00
Fixes: [YOCTO #13471] (From OE-Core rev: 312994268bb68a012a61c99e1c3697e8de60a2ce) Signed-off-by: Ida Delphine <idadelm@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
46 lines
1.6 KiB
BlitzBasic
46 lines
1.6 KiB
BlitzBasic
SUMMARY = "ALSA sound library"
|
|
DESCRIPTION = "(Occasionally a.k.a. libasound) is a userspace library that \
|
|
provides a level of abstraction over the /dev interfaces provided by the kernel modules."
|
|
HOMEPAGE = "http://www.alsa-project.org"
|
|
BUGTRACKER = "http://alsa-project.org/main/index.php/Bug_Tracking"
|
|
SECTION = "libs/multimedia"
|
|
LICENSE = "LGPLv2.1 & GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7 \
|
|
file://src/socket.c;md5=285675b45e83f571c6a957fe4ab79c93;beginline=9;endline=24 \
|
|
"
|
|
|
|
SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2 \
|
|
file://ad8c8e5503980295dd8e5e54a6285d2d7e32eb1e.patch"
|
|
SRC_URI[sha256sum] = "f7554be1a56cdff468b58fc1c29b95b64864c590038dd309c7a978c7116908f7"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF += " \
|
|
${@bb.utils.contains('TARGET_FPU', 'soft', '--with-softfloat', '', d)} \
|
|
--disable-python \
|
|
"
|
|
|
|
PACKAGES =+ "alsa-server alsa-conf libatopology"
|
|
|
|
FILES_alsa-server = "${bindir}/*"
|
|
FILES_alsa-conf = "${datadir}/alsa/"
|
|
FILES_libatopology = "${libdir}/libatopology.so.*"
|
|
|
|
RDEPENDS_${PN}_class-target = "alsa-conf alsa-ucm-conf"
|
|
RDEPENDS_libatopology_class-target = "alsa-topology-conf"
|
|
|
|
# upgrade path
|
|
RPROVIDES_${PN} = "libasound"
|
|
RREPLACES_${PN} = "libasound"
|
|
RCONFLICTS_${PN} = "libasound"
|
|
|
|
RPROVIDES_${PN}-dev = "alsa-dev"
|
|
RREPLACES_${PN}-dev = "alsa-dev"
|
|
RCONFLICTS_${PN}-dev = "alsa-dev"
|
|
|
|
RPROVIDES_alsa-conf = "alsa-conf-base"
|
|
RREPLACES_alsa-conf = "alsa-conf-base"
|
|
RCONFLICTS_alsa-conf = "alsa-conf-base"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|