diff options
author | Tanu Kaskinen <tanuk@iki.fi> | 2020-01-06 11:18:03 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-10 21:18:22 +0000 |
commit | 0c928e9ade8c881f18706976b3ce177ff7425722 (patch) | |
tree | 3ed31efe8b27a18b0a5b5ae470b57cd52e617728 /meta/recipes-multimedia/alsa | |
parent | 6593b950bbdaef6d7036ee08a8bb047692edf3e5 (diff) | |
download | poky-0c928e9ade8c881f18706976b3ce177ff7425722.tar.gz |
alsa-ucm-conf: new recipe, version 1.2.1.2
The UCM configuration files were moved from the alsa-lib repository to a
new alsa-ucm-conf repository. The move was accompanied by a license
change from LGPL2.1 to BSD-3-Clause.
(From OE-Core rev: 769354b372a4a60dfec921789d875340b0244406)
Signed-off-by: Tanu Kaskinen <tanuk@iki.fi>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/alsa')
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-lib_1.2.1.2.bb | 2 | ||||
-rw-r--r-- | meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.1.2.bb | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.2.1.2.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.2.1.2.bb index 9565ad1b20..7bc78b8523 100644 --- a/meta/recipes-multimedia/alsa/alsa-lib_1.2.1.2.bb +++ b/meta/recipes-multimedia/alsa/alsa-lib_1.2.1.2.bb | |||
@@ -33,7 +33,7 @@ FILES_alsa-server = "${bindir}/*" | |||
33 | FILES_alsa-conf = "${datadir}/alsa/" | 33 | FILES_alsa-conf = "${datadir}/alsa/" |
34 | FILES_libatopology = "${libdir}/libatopology.so.*" | 34 | FILES_libatopology = "${libdir}/libatopology.so.*" |
35 | 35 | ||
36 | RDEPENDS_${PN}_class-target = "alsa-conf" | 36 | RDEPENDS_${PN}_class-target = "alsa-conf alsa-ucm-conf" |
37 | 37 | ||
38 | # upgrade path | 38 | # upgrade path |
39 | RPROVIDES_${PN} = "libasound" | 39 | RPROVIDES_${PN} = "libasound" |
diff --git a/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.1.2.bb b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.1.2.bb new file mode 100644 index 0000000000..469d1f7a95 --- /dev/null +++ b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.1.2.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "ALSA Use Case Manager configuration" | ||
2 | HOMEPAGE = "https://alsa-project.org" | ||
3 | BUGTRACKER = "https://alsa-project.org/wiki/Bug_Tracking" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=20d74d74db9741697903372ad001d3b4" | ||
6 | |||
7 | # The tarball doesn't have any toplevel directory. The subdir option tells | ||
8 | # Bitbake to unpack the archive to the correct place. | ||
9 | SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2;subdir=${BP}" | ||
10 | SRC_URI[md5sum] = "b7fa43cfd79df978184a6333766d2a50" | ||
11 | SRC_URI[sha256sum] = "ea8a86875f4cf430d49a662a04a6d6c606c5c9d67e54cb944c4d77b24554062f" | ||
12 | |||
13 | inherit allarch | ||
14 | |||
15 | do_install() { | ||
16 | install -d ${D}/usr/share/alsa | ||
17 | cp -r ${S}/ucm ${D}/usr/share/alsa | ||
18 | cp -r ${S}/ucm2 ${D}/usr/share/alsa | ||
19 | } | ||
20 | |||
21 | PACKAGES = "${PN}" | ||
22 | |||
23 | FILES_${PN} = "*" | ||