diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-12-15 23:40:22 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-17 09:56:14 +0000 |
| commit | cd31c6e4bab776c62cd0b88a614eb82ecdf99c32 (patch) | |
| tree | 43adc8d4544d9d84785ca6c6c518c3c27c115bad /meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.6.bb | |
| parent | 63849aafa25dcfb07643a5fe751eefa29eca2e9a (diff) | |
| download | poky-cd31c6e4bab776c62cd0b88a614eb82ecdf99c32.tar.gz | |
alsa: upgrade 1.2.5 -> 1.2.6
(From OE-Core rev: ad0fa779eea149b38ee71cbe828868a8bf00f79d)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.6.bb')
| -rw-r--r-- | meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.6.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.6.bb b/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.6.bb new file mode 100644 index 0000000000..000e984a7d --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-utils-scripts_1.2.6.bb | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | require alsa-utils.inc | ||
| 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 | } | ||
