mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
alsa-utils: upgrade to 1.0.29
Upgrade alsa-utils from 1.0.28 to 1.0.29. * remove PR * rename package alsa-utils-alsaconf to alsa-utils-scripts, and add script alsa-info.sh (From OE-Core rev: 027ca092ab201dd1ef56d819d316faea2d68871f) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
require alsa-utils_${PV}.bb
|
||||
|
||||
SUMMARY = "Shell script that creates ALSA configuration files"
|
||||
|
||||
FILESEXTRAPATHS_prepend := "${THISDIR}/alsa-utils:"
|
||||
|
||||
PACKAGES = "${PN}"
|
||||
RDEPENDS_${PN} += "bash"
|
||||
|
||||
FILES_${PN} = "${sbindir}/alsaconf"
|
||||
|
||||
S = "${WORKDIR}/alsa-utils-${PV}"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${sbindir}
|
||||
install -m 0755 ${B}/alsaconf/alsaconf ${D}${sbindir}/
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
require alsa-utils_${PV}.bb
|
||||
|
||||
SUMMARY = "Shell scripts that show help info and create ALSA configuration files"
|
||||
PROVIDES = "alsa-utils-alsaconf"
|
||||
|
||||
FILESEXTRAPATHS_prepend := "${THISDIR}/alsa-utils:"
|
||||
|
||||
PACKAGES = "${PN}"
|
||||
RDEPENDS_${PN} += "bash"
|
||||
|
||||
FILES_${PN} = "${sbindir}/alsaconf \
|
||||
${sbindir}/alsa-info.sh \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/alsa-utils-${PV}"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${sbindir}
|
||||
install -m 0755 ${B}/alsaconf/alsaconf ${D}${sbindir}/
|
||||
install -m 0755 ${S}/alsa-info/alsa-info.sh ${D}${sbindir}/
|
||||
}
|
||||
+4
-5
@@ -16,8 +16,8 @@ SRC_URI = "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2 \
|
||||
file://alsa-utils-aplay-interrupt-signal-handling.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "361552d5b1cacd0a1e7ba09e69990211"
|
||||
SRC_URI[sha256sum] = "f3ff4c89b0125a7797b1b13cd094cc92276e655458274967386e812d03642acc"
|
||||
SRC_URI[md5sum] = "6b289bf874c4c9a63f4b3973093dd404"
|
||||
SRC_URI[sha256sum] = "5160058f3e14483ced5de919dd473f93932059454530a9b7ef97dcabd6833e9b"
|
||||
|
||||
# lazy hack. needs proper fixing in gettext.m4, see
|
||||
# http://bugs.openembedded.org/show_bug.cgi?id=2348
|
||||
@@ -25,8 +25,6 @@ SRC_URI[sha256sum] = "f3ff4c89b0125a7797b1b13cd094cc92276e655458274967386e812d03
|
||||
#
|
||||
EXTRA_OECONF_append_libc-uclibc = " --disable-nls"
|
||||
|
||||
PR = "r1"
|
||||
|
||||
inherit autotools gettext pkgconfig
|
||||
|
||||
# This are all packages that we need to make. Also, the now empty alsa-utils
|
||||
@@ -86,8 +84,9 @@ do_install() {
|
||||
autotools_do_install
|
||||
|
||||
# We don't ship this here because it requires a dependency on bash.
|
||||
# See alsa-utils-alsaconf_${PV}.bb
|
||||
# See alsa-utils-scripts_${PV}.bb
|
||||
rm ${D}${sbindir}/alsaconf
|
||||
rm ${D}${sbindir}/alsa-info.sh
|
||||
|
||||
if ${@bb.utils.contains('PACKAGECONFIG', 'udev', 'false', 'true', d)}; then
|
||||
# This is where alsa-utils will install its rules if we don't tell it anything else.
|
||||
Reference in New Issue
Block a user