diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2016-08-17 14:20:30 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-18 09:27:52 +0100 |
commit | 180a77c56a3aedc7bb4bd8d7d9508ff72ac947b2 (patch) | |
tree | 03a91efd91581fb0d02872b899e491ae0a7d5769 /meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb | |
parent | 400e2628f1072a39e897ca02cde6a7a37cbb95e1 (diff) | |
download | poky-180a77c56a3aedc7bb4bd8d7d9508ff72ac947b2.tar.gz |
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>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb b/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb new file mode 100644 index 0000000000..fef79d9c9c --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.1.2.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | require alsa-utils_${PV}.bb | ||
2 | |||
3 | SUMMARY = "Shell scripts that show help info and create ALSA configuration files" | ||
4 | PROVIDES = "alsa-utils-alsaconf" | ||
5 | |||
6 | FILESEXTRAPATHS_prepend := "${THISDIR}/alsa-utils:" | ||
7 | |||
8 | PACKAGES = "${PN}" | ||
9 | RDEPENDS_${PN} += "bash" | ||
10 | |||
11 | FILES_${PN} = "${sbindir}/alsaconf \ | ||
12 | ${sbindir}/alsa-info.sh \ | ||
13 | ${sbindir}/alsabat-test.sh \ | ||
14 | " | ||
15 | |||
16 | S = "${WORKDIR}/alsa-utils-${PV}" | ||
17 | |||
18 | do_install() { | ||
19 | install -d ${D}${sbindir} | ||
20 | install -m 0755 ${B}/alsaconf/alsaconf ${D}${sbindir}/ | ||
21 | install -m 0755 ${S}/alsa-info/alsa-info.sh ${D}${sbindir}/ | ||
22 | if ${@bb.utils.contains('PACKAGECONFIG', 'bat', 'true', 'false', d)}; then | ||
23 | install -m 0755 ${S}/bat/alsabat-test.sh ${D}${sbindir}/ | ||
24 | fi | ||
25 | } | ||