mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 18:53:13 +01:00
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>
22 lines
534 B
BlitzBasic
22 lines
534 B
BlitzBasic
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}/
|
|
}
|