mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
(From OE-Core rev: d421cbe8e323e398852404a0fe3e11283e3bb61e) Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
717 B
BlitzBasic
26 lines
717 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 \
|
|
${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
|
|
}
|