mirror of
https://git.yoctoproject.org/poky
synced 2026-09-12 15:49:36 +02:00
alsa-utils: 1.1.1 -> 1.1.2
Changelog: http://www.alsa-project.org/main/index.php/Changes_v1.1.1_v1.1.2 The FFT code in alsabat changed from double precision to single precision floating point numbers, which is why the fftw dependency changed to fftwf. (From OE-Core rev: 2b44e468d20a0256fba896562e2e7d1ae593a4c8) Signed-off-by: Tanu Kaskinen <tanuk@iki.fi> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
400e2628f1
commit
180a77c56a
25
meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb
Normal file
25
meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb
Normal file
@@ -0,0 +1,25 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user