mirror of
git://git.yoctoproject.org/poky
synced 2026-09-16 23:54:59 +00:00
This avoids including irrelevant information when calculating the license checksum. License-Update: Trim the text part used for the license file checksum (From OE-Core rev: 17cf76a590474d062180bfd979348ec041d8697f) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
1.3 KiB
BlitzBasic
42 lines
1.3 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=a916467b91076e631dd8edb7424769c7 \
|
|
file://src/socket.c;md5=285675b45e83f571c6a957fe4ab79c93;beginline=9;endline=24 \
|
|
"
|
|
|
|
SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2"
|
|
SRC_URI[md5sum] = "e6d429dbdcfaa0f034d907fa6dc3735e"
|
|
SRC_URI[sha256sum] = "488373aef5396682f3a411a6d064ae0ad196b9c96269d0bb912fbdeec94b994b"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF += " \
|
|
${@bb.utils.contains('TARGET_FPU', 'soft', '--with-softfloat', '', d)} \
|
|
--disable-python \
|
|
"
|
|
|
|
PACKAGES =+ "alsa-server alsa-conf alsa-doc"
|
|
|
|
FILES_alsa-server = "${bindir}/*"
|
|
FILES_alsa-conf = "${datadir}/alsa/"
|
|
|
|
RDEPENDS_${PN}_class-target = "alsa-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"
|