diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2021-06-03 17:43:12 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-06 23:16:50 +0100 |
commit | 3c0dd6b2202c0c95d93b8fec6ba7169a3211daf5 (patch) | |
tree | 6d2d72b2c15a43258c2a79aa8822a42eca19ee24 /meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.5.bb | |
parent | 3c4fdb0790529cf2d7e8a5ac8891b961f179cb06 (diff) | |
download | poky-3c0dd6b2202c0c95d93b8fec6ba7169a3211daf5.tar.gz |
alsa-ucm-conf: upgrade 1.2.4 -> 1.2.5
See changelog at [1]
[1] https://github.com/alsa-project/alsa-ucm-conf/releases/tag/v1.2.5
(From OE-Core rev: 3b69f6c45082b28aea2cbf4ed3580fb01e56654c)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.5.bb')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.5.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.5.bb b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.5.bb new file mode 100644 index 0000000000..5de7185895 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.5.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "ALSA Use Case Manager configuration" | ||
2 | DESCRIPTION = "This package contains ALSA Use Case Manager configuration \ | ||
3 | of audio input/output names and routing for specific audio hardware. \ | ||
4 | They can be used with the alsaucm tool. " | ||
5 | HOMEPAGE = "https://alsa-project.org" | ||
6 | BUGTRACKER = "https://alsa-project.org/wiki/Bug_Tracking" | ||
7 | LICENSE = "BSD-3-Clause" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=20d74d74db9741697903372ad001d3b4" | ||
9 | |||
10 | SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2" | ||
11 | SRC_URI[sha256sum] = "093ae3d85a5e6fd2cd1cc27feda400d7191382fb8b5e5e23497286c87c1507a5" | ||
12 | # Something went wrong at upstream tarballing | ||
13 | S = "${WORKDIR}/${BPN}-1.2.4.81.g4884e" | ||
14 | |||
15 | inherit allarch | ||
16 | |||
17 | do_install() { | ||
18 | install -d "${D}${datadir}/alsa" | ||
19 | cp -r "${S}/ucm" "${D}${datadir}/alsa" | ||
20 | cp -r "${S}/ucm2" "${D}${datadir}/alsa" | ||
21 | } | ||
22 | |||
23 | PACKAGES = "${PN}" | ||
24 | |||
25 | FILES_${PN} = "*" | ||