mirror of
https://git.yoctoproject.org/poky
synced 2026-03-30 17:02:22 +02:00
Changelog: http://www.alsa-project.org/main/index.php/Changes_v1.1.1_v1.1.2 Removed upstreamed patch: 0001-pcm_plugin-fix-appl-pointer-not-correct-when-mmap_co.patch Rebased avoid-including-sys-poll.h-directly.patch (From OE-Core rev: 4d3ec9312d9f721f57d0afc08ec1512709f75d17) Signed-off-by: Tanu Kaskinen <tanuk@iki.fi> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
51 lines
1.8 KiB
BlitzBasic
51 lines
1.8 KiB
BlitzBasic
SUMMARY = "ALSA sound library"
|
|
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=7fbc338309ac38fefcd64b04bb903e34 \
|
|
file://src/socket.c;beginline=1;endline=26;md5=11ff89a8a7a4a690a5c78effe8159545"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
# configure.in sets -D__arm__ on the command line for any arm system
|
|
# (not just those with the ARM instruction set), this should be removed,
|
|
# (or replaced by a permitted #define).
|
|
#FIXME: remove the following
|
|
ARM_INSTRUCTION_SET = "arm"
|
|
|
|
SRC_URI = "ftp://ftp.alsa-project.org/pub/lib/${BP}.tar.bz2 \
|
|
file://Check-if-wordexp-function-is-supported.patch \
|
|
file://avoid-including-sys-poll.h-directly.patch \
|
|
"
|
|
SRC_URI[md5sum] = "1946e6438b8262a7b8fdadacd0e06ba7"
|
|
SRC_URI[sha256sum] = "d38dacd9892b06b8bff04923c380b38fb2e379ee5538935ff37e45b395d861d6"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
require alsa-fpu.inc
|
|
EXTRA_OECONF += "${@get_alsa_fpu_setting(bb, d)} "
|
|
|
|
EXTRA_OECONF = "--disable-python"
|
|
|
|
EXTRA_OECONF_append_libc-uclibc = " --with-versioned=no "
|
|
|
|
PACKAGES =+ "alsa-server libasound alsa-conf-base alsa-conf alsa-doc"
|
|
FILES_${PN} += "${libdir}/${BPN}/smixer/*.so"
|
|
FILES_${PN}-dev += "${libdir}/${BPN}/smixer/*.la"
|
|
FILES_libasound = "${libdir}/libasound.so.*"
|
|
FILES_alsa-server = "${bindir}/*"
|
|
FILES_alsa-conf = "${datadir}/alsa/"
|
|
FILES_alsa-conf-base = "\
|
|
${datadir}/alsa/alsa.conf \
|
|
${datadir}/alsa/cards/aliases.conf \
|
|
${datadir}/alsa/pcm/default.conf \
|
|
${datadir}/alsa/pcm/dmix.conf \
|
|
${datadir}/alsa/pcm/dsnoop.conf"
|
|
|
|
RDEPENDS_libasound = "alsa-conf-base alsa-conf"
|
|
# upgrade path
|
|
RPROVIDES_${PN}-dev = "alsa-dev"
|
|
RREPLACES_${PN}-dev = "alsa-dev"
|
|
RCONFLICTS_${PN}-dev = "alsa-dev"
|