mirror of
https://git.yoctoproject.org/poky
synced 2026-02-26 11:29:40 +01:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
712 B
BlitzBasic
26 lines
712 B
BlitzBasic
require alsa-utils.inc
|
|
|
|
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 \
|
|
${sbindir}/alsabat-test.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}/
|
|
if ${@bb.utils.contains('PACKAGECONFIG', 'bat', 'true', 'false', d)}; then
|
|
install -m 0755 ${S}/bat/alsabat-test.sh ${D}${sbindir}/
|
|
fi
|
|
}
|