mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 01:02:22 +01:00
Changelog: - Fix symver build error on non-ELF platforms - ucm: main - remove cast to pointer from integer of different size warning - ucm: mark internal functions static - topology: fix src/mixer/mixer.c return value warning - dogyxen: fix topology.h warnings - doxygen: fix broken examples links - doxygen: include docs for shmarea functions - doxygen: conf: do not hide PCM specific function - doxygen: silence warning from asoundlib.h - doxygen: ucm: silence warnings - doxygen: topology: silence 'not documented' warnings - doxygen: global: silence 'not documented' warnings - doxygen: namehint: silence 'not documented' warnings - doxygen: seq: silence 'not documented' warnings - doxygen: conf: silence 'not documented' warnings - doxygen: rawmidi: silence 'not documented' warnings - doxygen: control: silence 'not documented' item warnings - doxygen: pcm: silence 'not documented' warnings - doxygen: include external control docs - doxygen: fix inadvertent link requests - doxygen: fix list indentation errors - doxygen: escape xml tags - doxygen: fix image path - doxygen: fix broken parameter name tags - doxygen: Fix missing group end markers - reshuffle included files to include config.h as first - configure: add AC_SYS_LARGEFILE - seq: Fix wrong seq version update at snd_seq_hw_get_client_info() - seq: Add overflow check in snd_seq_ev_set_ump_data() - test: oldapi - fix the clang-16 compilation error - rawmidi: Suppress error messages for non-fatal errors - seq: ump: Fix typo in function name containing "group" - pcm: hw: fix minor bug in sw_params ioctl - seq: Add UMP 1.1 features - ump: Add UMP 1.1 features - uapi: Update rawmidi API to 2.0.4 - seq: Add UMP support - uapi: Update asequencer.h definitions for 1.0.3 - ump: Add helpers for handling SysEx data - ump: Add helpers to parse / set UMP packet data - control: Add UMP Endpoint and Block info query support - control: Add UMP device query support -- ump: Add initial support - rawmidi: Add UMP ioctl support - uapi: Update control API to 2.0.9 - uapi: Update rawmidi API to 2.0.3 - remove extra trailing new line in SNDMSG and SNDERR calls - usecase: add CaptureMicInfoFile field to documentation - include: fix SND_DLSYM_BUILD_VERSION() for static build - pcm: hw - prevent divide by zero for broken apps (From OE-Core rev: 232b6b7276b6b34edd1aa5292897a92e16235ecf) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
47 lines
1.6 KiB
BlitzBasic
47 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 = "LGPL-2.1-only & GPL-2.0-or-later"
|
|
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://0001-global.h-move-__STRING-macro-outside-PIC-ifdef-block.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "c86a45a846331b1b0aa6e6be100be2a7aef92efd405cf6bac7eef8174baa920e"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF += " \
|
|
${@bb.utils.contains('TARGET_FPU', 'soft', '--with-softfloat', '', d)} \
|
|
--disable-python --disable-old-symbols \
|
|
"
|
|
|
|
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"
|