summaryrefslogtreecommitdiffstats
path: root/recipes-multimedia
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2026-07-17 10:03:07 -0300
committerGitHub <noreply@github.com>2026-07-17 10:03:07 -0300
commit926818369d1a5a3de142b51b831971d39645f1bb (patch)
treef186fa0549524b593b3d3cfdf378178c7b745564 /recipes-multimedia
parent1b7b050f44eea89e80b95222b560a909d8fb2268 (diff)
parent21141aa51ab21f3c4620a7bc75270e416667da40 (diff)
downloadmeta-freescale-926818369d1a5a3de142b51b831971d39645f1bb.tar.gz
Merge pull request #2565 from lucianogdittgen/oelint-cleanup-8-recipe-metadata-4
oelint: Recipe metadata and variable-order cleanups
Diffstat (limited to 'recipes-multimedia')
-rw-r--r--recipes-multimedia/alsa/imx-alsa-plugins_git.bb26
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.26.6.bb11
-rw-r--r--recipes-multimedia/gstreamer/imx-gst1.0-plugin_git.bb50
-rw-r--r--recipes-multimedia/imx-codec/imx-codec_4.10.0.bb10
-rw-r--r--recipes-multimedia/tinycompress/tinycompress_1.2.5.bb8
5 files changed, 64 insertions, 41 deletions
diff --git a/recipes-multimedia/alsa/imx-alsa-plugins_git.bb b/recipes-multimedia/alsa/imx-alsa-plugins_git.bb
index fced1cb66..2cd9124fc 100644
--- a/recipes-multimedia/alsa/imx-alsa-plugins_git.bb
+++ b/recipes-multimedia/alsa/imx-alsa-plugins_git.bb
@@ -2,21 +2,17 @@
2# Copyright 2017-2026 NXP 2# Copyright 2017-2026 NXP
3# Released under the MIT license (see COPYING.MIT for the terms) 3# Released under the MIT license (see COPYING.MIT for the terms)
4 4
5DESCRIPTION = "Freescale alsa-lib plugins" 5SUMMARY = "ALSA-lib plugins for i.MX SoCs"
6DESCRIPTION = "Freescale/NXP ALSA-lib plugins for i.MX SoCs, including the \
7 software PDM (pulse-density modulation) capture plugin."
6HOMEPAGE = "https://github.com/nxp-imx/imx-alsa-plugins" 8HOMEPAGE = "https://github.com/nxp-imx/imx-alsa-plugins"
7LICENSE = "GPL-2.0-only"
8SECTION = "multimedia" 9SECTION = "multimedia"
10LICENSE = "GPL-2.0-only"
11LIC_FILES_CHKSUM = "file://LICENSE;md5=94d55d512a9ba36caa9b7df079bae19f"
9DEPENDS = "alsa-lib" 12DEPENDS = "alsa-lib"
10 13
11# For backwards compatibility 14# Provide the old fsl-alsa-plugins name for backwards compatibility
12PROVIDES += "fsl-alsa-plugins" 15PROVIDES += "fsl-alsa-plugins"
13RREPLACES:${PN} = "fsl-alsa-plugins"
14RPROVIDES:${PN} = "fsl-alsa-plugins"
15RCONFLICTS:${PN} = "fsl-alsa-plugins"
16
17LIC_FILES_CHKSUM = "file://LICENSE;md5=94d55d512a9ba36caa9b7df079bae19f"
18
19inherit autotools pkgconfig use-imx-headers
20 16
21PV = "1.0.26+${SRCPV}" 17PV = "1.0.26+${SRCPV}"
22 18
@@ -25,6 +21,8 @@ IMXALSA_SRC ?= "git://github.com/nxp-imx/imx-alsa-plugins.git;protocol=https"
25SRCBRANCH = "MM_04.10.03_2512_L6.18.2" 21SRCBRANCH = "MM_04.10.03_2512_L6.18.2"
26SRCREV = "18eb79b6cf13fb988de7d4eef5b22eb60f8e2533" 22SRCREV = "18eb79b6cf13fb988de7d4eef5b22eb60f8e2533"
27 23
24inherit autotools pkgconfig use-imx-headers
25
28CFLAGS:append = " -I${STAGING_INCDIR_IMX}" 26CFLAGS:append = " -I${STAGING_INCDIR_IMX}"
29 27
30PACKAGECONFIG ??= "${PACKAGECONFIG_SWPDM}" 28PACKAGECONFIG ??= "${PACKAGECONFIG_SWPDM}"
@@ -33,10 +31,18 @@ PACKAGECONFIG_SWPDM:mx8-nxp-bsp = "swpdm"
33 31
34PACKAGECONFIG[swpdm] = "--enable-swpdm,--disable-swpdm,imx-sw-pdm" 32PACKAGECONFIG[swpdm] = "--enable-swpdm,--disable-swpdm,imx-sw-pdm"
35 33
34# ALSA plugins install versioned-looking .so modules into ${libdir}/alsa-lib;
35# these are runtime plugin objects (not dev symlinks), so dev-so must be skipped.
36# nooelint: oelint.vars.insaneskip
36INSANE_SKIP:${PN} = "dev-so" 37INSANE_SKIP:${PN} = "dev-so"
37 38
38FILES:${PN} += "${libdir}/alsa-lib/libasound_*.so" 39FILES:${PN} += "${libdir}/alsa-lib/libasound_*.so"
39FILES:${PN}-dbg += "${libdir}/alsa-lib/.debug" 40FILES:${PN}-dbg += "${libdir}/alsa-lib/.debug"
40FILES:${PN}-dev += "${libdir}/alsa-lib/*.la" 41FILES:${PN}-dev += "${libdir}/alsa-lib/*.la"
41 42
43# Runtime backwards compatibility with the old fsl-alsa-plugins name
44RREPLACES:${PN} = "fsl-alsa-plugins"
45RPROVIDES:${PN} = "fsl-alsa-plugins"
46RCONFLICTS:${PN} = "fsl-alsa-plugins"
47
42COMPATIBLE_MACHINE = "(imx-nxp-bsp)" 48COMPATIBLE_MACHINE = "(imx-nxp-bsp)"
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.26.6.bb b/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.26.6.bb
index 26cac0a7d..d1ed15f87 100644
--- a/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.26.6.bb
+++ b/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.26.6.bb
@@ -1,20 +1,21 @@
1SUMMARY = "VA-API support to GStreamer" 1SUMMARY = "VA-API support to GStreamer"
2HOMEPAGE = "https://gstreamer.freedesktop.org/"
3DESCRIPTION = "gstreamer-vaapi consists of a collection of VA-API \ 2DESCRIPTION = "gstreamer-vaapi consists of a collection of VA-API \
4 based plugins for GStreamer and helper libraries: `vaapidecode', \ 3 based plugins for GStreamer and helper libraries: `vaapidecode', \
5 `vaapiconvert', and `vaapisink'." 4 `vaapiconvert', and `vaapisink'."
5HOMEPAGE = "https://gstreamer.freedesktop.org/"
6SECTION = "multimedia"
6 7
7REALPN = "gstreamer-vaapi" 8REALPN = "gstreamer-vaapi"
8 9
9LICENSE = "LGPL-2.1-or-later" 10LICENSE = "LGPL-2.1-or-later"
10LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c" 11LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
12DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-bad gstreamer1.0-plugins-base libva"
11 13
12SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.xz" 14SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.xz"
13 15
14SRC_URI[sha256sum] = "d87c57244cecbd17bb030b698dcb67a66225de639f7c5b837391c4a8e5477667" 16SRC_URI[sha256sum] = "d87c57244cecbd17bb030b698dcb67a66225de639f7c5b837391c4a8e5477667"
15 17
16S = "${UNPACKDIR}/${REALPN}-${PV}" 18S = "${UNPACKDIR}/${REALPN}-${PV}"
17DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-bad gstreamer1.0-plugins-base libva"
18 19
19inherit meson pkgconfig features_check upstream-version-is-even 20inherit meson pkgconfig features_check upstream-version-is-even
20 21
@@ -26,8 +27,6 @@ EXTRA_OEMESON += "\
26 -Dtests=enabled \ 27 -Dtests=enabled \
27" 28"
28 29
29PACKAGES =+ "${PN}-tests"
30
31# OpenGL packageconfig factored out to make it easy for distros 30# OpenGL packageconfig factored out to make it easy for distros
32# and BSP layers to pick either glx, egl, or no GL. By default, 31# and BSP layers to pick either glx, egl, or no GL. By default,
33# try detecting X11 first, and if found (with OpenGL), use GLX, 32# try detecting X11 first, and if found (with OpenGL), use GLX,
@@ -47,7 +46,9 @@ PACKAGECONFIG[glx] = "-Dglx=enabled,-Dglx=disabled,virtual/libgl"
47PACKAGECONFIG[wayland] = "-Dwayland=enabled,-Dwayland=disabled,wayland-native wayland wayland-protocols" 46PACKAGECONFIG[wayland] = "-Dwayland=enabled,-Dwayland=disabled,wayland-native wayland wayland-protocols"
48PACKAGECONFIG[x11] = "-Dx11=enabled,-Dx11=disabled,virtual/libx11 libxrandr libxrender" 47PACKAGECONFIG[x11] = "-Dx11=enabled,-Dx11=disabled,virtual/libx11 libxrandr libxrender"
49 48
49PACKAGES =+ "${PN}-tests"
50
50FILES:${PN} += "${libdir}/gstreamer-*/*.so" 51FILES:${PN} += "${libdir}/gstreamer-*/*.so"
51FILES:${PN}-dbg += "${libdir}/gstreamer-*/.debug" 52FILES:${PN}-dbg += "${libdir}/gstreamer-*/.debug"
52FILES:${PN}-dev += "${libdir}/gstreamer-*/*.a" 53FILES:${PN}-dev += "${libdir}/gstreamer-*/*.a"
53FILES:${PN}-tests = "${bindir}/*" 54FILES:${PN}-tests += "${bindir}/*"
diff --git a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_git.bb b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_git.bb
index 486049d7b..aa398df0c 100644
--- a/recipes-multimedia/gstreamer/imx-gst1.0-plugin_git.bb
+++ b/recipes-multimedia/gstreamer/imx-gst1.0-plugin_git.bb
@@ -2,19 +2,22 @@
2# Copyright 2017-2025 NXP 2# Copyright 2017-2025 NXP
3# Copyright (C) 2012-2015 O.S. Systems Software LTDA. 3# Copyright (C) 2012-2015 O.S. Systems Software LTDA.
4# Released under the MIT license (see COPYING.MIT for the terms) 4# Released under the MIT license (see COPYING.MIT for the terms)
5DESCRIPTION = "Gstreamer freescale plugins" 5SUMMARY = "GStreamer 1.0 plugins for i.MX"
6DESCRIPTION = "Freescale/NXP GStreamer 1.0 plugins providing hardware-accelerated \
7 multimedia (audio/video codec, capture and sink) elements for \
8 i.MX SoCs."
6HOMEPAGE = "https://github.com/nxp-imx/imx-gst1.0-plugin" 9HOMEPAGE = "https://github.com/nxp-imx/imx-gst1.0-plugin"
7SECTION = "multimedia" 10SECTION = "multimedia"
8LICENSE = "GPL-2.0-only & LGPL-2.0-only & LGPL-2.1-only" 11LICENSE = "GPL-2.0-only & LGPL-2.0-only & LGPL-2.1-only"
9LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24" 12LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=fbc093901857fcd118f065f900982c24"
10 13
11DEPENDS = "\ 14DEPENDS = "\
15 ${DEPENDS_IMXGPU} \
12 gstreamer1.0 \ 16 gstreamer1.0 \
13 gstreamer1.0-plugins-base \
14 gstreamer1.0-plugins-bad \ 17 gstreamer1.0-plugins-bad \
18 gstreamer1.0-plugins-base \
15 imx-codec \ 19 imx-codec \
16 imx-parser \ 20 imx-parser \
17 ${DEPENDS_IMXGPU} \
18 libinput \ 21 libinput \
19" 22"
20DEPENDS:append:mx6-nxp-bsp = " imx-lib" 23DEPENDS:append:mx6-nxp-bsp = " imx-lib"
@@ -31,11 +34,6 @@ DEPENDS_IMX_OPENCL_CONVERTER:mx6-nxp-bsp = ""
31DEPENDS_IMX_OPENCL_CONVERTER:mx7-nxp-bsp = "" 34DEPENDS_IMX_OPENCL_CONVERTER:mx7-nxp-bsp = ""
32DEPENDS_IMX_OPENCL_CONVERTER:mx8mm-nxp-bsp = "" 35DEPENDS_IMX_OPENCL_CONVERTER:mx8mm-nxp-bsp = ""
33 36
34# For backwards compatibility
35RREPLACES:${PN} = "gst1.0-fsl-plugin"
36RPROVIDES:${PN} = "gst1.0-fsl-plugin"
37RCONFLICTS:${PN} = "gst1.0-fsl-plugin"
38
39PV = "4.10.3+git${SRCPV}" 37PV = "4.10.3+git${SRCPV}"
40 38
41SRC_URI = "${IMXGST_SRC};branch=${SRCBRANCH}" 39SRC_URI = "${IMXGST_SRC};branch=${SRCBRANCH}"
@@ -60,17 +58,6 @@ EXTRA_OEMESON = "-Dplatform=${PLATFORM} \
60 -Dc_args="${CFLAGS} -I${STAGING_INCDIR_IMX}" \ 58 -Dc_args="${CFLAGS} -I${STAGING_INCDIR_IMX}" \
61" 59"
62 60
63PACKAGES =+ "${PN}-tools ${PN}-libgstfsl"
64
65# Add codec list that the beep plugin run-time depended
66BEEP_RDEPENDS = "imx-codec-aac imx-codec-mp3 imx-codec-oggvorbis"
67RDEPENDS:${PN} += "imx-parser ${BEEP_RDEPENDS} gstreamer1.0-plugins-good-id3demux "
68RDEPENDS:${PN}:append:mx8qm-nxp-bsp = " imx-dsp"
69RDEPENDS:${PN}:append:mx8qxp-nxp-bsp = " imx-dsp"
70RDEPENDS:${PN}:append:mx8dx-nxp-bsp = " imx-dsp"
71RDEPENDS:${PN}:append:mx8mp-nxp-bsp = " imx-dsp"
72RDEPENDS:${PN}:append:mx8ulp-nxp-bsp = " imx-dsp"
73
74PACKAGECONFIG ?= "" 61PACKAGECONFIG ?= ""
75 62
76# FIXME: Add all features 63# FIXME: Add all features
@@ -82,13 +69,34 @@ MSDEPENDS = "imx-msparser imx-mscodec"
82PACKAGECONFIG[wma10dec] = ",,${MSDEPENDS},${MSDEPENDS}" 69PACKAGECONFIG[wma10dec] = ",,${MSDEPENDS},${MSDEPENDS}"
83PACKAGECONFIG[wma8enc] = ",,${MSDEPENDS},${MSDEPENDS}" 70PACKAGECONFIG[wma8enc] = ",,${MSDEPENDS},${MSDEPENDS}"
84 71
85FILES:${PN} = "${libdir}/gstreamer-1.0/*.so ${datadir}" 72PACKAGES =+ "${PN}-tools ${PN}-libgstfsl"
86 73
74# Deliberately replace the default main-package file list so the (unversioned)
75# GStreamer plugin .so files land in ${PN} instead of ${PN}-dev.
76# nooelint: oelint.var.filesoverride
77FILES:${PN} = "${libdir}/gstreamer-1.0/*.so ${datadir}"
87FILES:${PN}-dbg += "${libdir}/gstreamer-1.0/.debug" 78FILES:${PN}-dbg += "${libdir}/gstreamer-1.0/.debug"
88FILES:${PN}-dev += "${libdir}/gstreamer-1.0/*.la ${libdir}/pkgconfig/*.pc" 79FILES:${PN}-dev += "${libdir}/gstreamer-1.0/*.la ${libdir}/pkgconfig/*.pc"
89FILES:${PN}-tools += "${bindir}/* ${libdir}/librecorder_engine-1.0${SOLIBS}" 80FILES:${PN}-tools += "${bindir}/* ${libdir}/librecorder_engine-1.0${SOLIBS}"
90FILES:${PN}-libgstfsl = "${libdir}/libgstfsl-1.0${SOLIBS}" 81FILES:${PN}-libgstfsl += "${libdir}/libgstfsl-1.0${SOLIBS}"
82
83# Add codec list that the beep plugin run-time depended
84BEEP_RDEPENDS = "imx-codec-aac imx-codec-mp3 imx-codec-oggvorbis"
85RDEPENDS:${PN} += "${BEEP_RDEPENDS} gstreamer1.0-plugins-good-id3demux imx-parser"
86RDEPENDS:${PN}:append:mx8qm-nxp-bsp = " imx-dsp"
87RDEPENDS:${PN}:append:mx8qxp-nxp-bsp = " imx-dsp"
88RDEPENDS:${PN}:append:mx8dx-nxp-bsp = " imx-dsp"
89RDEPENDS:${PN}:append:mx8mp-nxp-bsp = " imx-dsp"
90RDEPENDS:${PN}:append:mx8ulp-nxp-bsp = " imx-dsp"
91 91
92# The plugins pull in codec/parser build dependencies conditionally through
93# PACKAGECONFIG, so the static build-deps QA check cannot see them all.
94# nooelint: oelint.vars.insaneskip
92INSANE_SKIP:${PN} = "build-deps" 95INSANE_SKIP:${PN} = "build-deps"
93 96
97# Runtime backwards compatibility with the old gst1.0-fsl-plugin name
98RREPLACES:${PN} = "gst1.0-fsl-plugin"
99RPROVIDES:${PN} = "gst1.0-fsl-plugin"
100RCONFLICTS:${PN} = "gst1.0-fsl-plugin"
101
94COMPATIBLE_MACHINE = "(imx-nxp-bsp)" 102COMPATIBLE_MACHINE = "(imx-nxp-bsp)"
diff --git a/recipes-multimedia/imx-codec/imx-codec_4.10.0.bb b/recipes-multimedia/imx-codec/imx-codec_4.10.0.bb
index 1c6e8081c..cac6d9c5e 100644
--- a/recipes-multimedia/imx-codec/imx-codec_4.10.0.bb
+++ b/recipes-multimedia/imx-codec/imx-codec_4.10.0.bb
@@ -60,6 +60,7 @@ python __set_insane_skip() {
60 else: 60 else:
61 d.setVar("INSANE_SKIP:%s" % p, "ldflags textrel") 61 d.setVar("INSANE_SKIP:%s" % p, "ldflags textrel")
62} 62}
63__set_insane_skip[doc] = "Set DEBIAN_NOAUTONAME and INSANE_SKIP for the prebuilt codec plugin packages."
63 64
64do_package_qa[prefuncs] += "__set_insane_skip" 65do_package_qa[prefuncs] += "__set_insane_skip"
65 66
@@ -82,6 +83,7 @@ python __split_libfslcodec_plugins() {
82 d.setVar('RPROVIDES:%s' % pkg, ' libfslcodec') 83 d.setVar('RPROVIDES:%s' % pkg, ' libfslcodec')
83 d.setVar('RCONFLICTS:%s' % pkg, ' libfslcodec') 84 d.setVar('RCONFLICTS:%s' % pkg, ' libfslcodec')
84} 85}
86__split_libfslcodec_plugins[doc] = "Split the codec plugin .so files into per-codec packages."
85 87
86python __set_metapkg_rdepends() { 88python __set_metapkg_rdepends() {
87 # Allow addition of all codecs in a image; useful specially for 89 # Allow addition of all codecs in a image; useful specially for
@@ -91,9 +93,12 @@ python __set_metapkg_rdepends() {
91 codec_pkgs) 93 codec_pkgs)
92 d.appendVar('RDEPENDS:imx-codec-meta', ' ' + ' '.join(codec_pkgs)) 94 d.appendVar('RDEPENDS:imx-codec-meta', ' ' + ' '.join(codec_pkgs))
93} 95}
96__set_metapkg_rdepends[doc] = "Make the -meta package RDEPEND on all split codec packages."
94 97
95PACKAGESPLITFUNCS =+ "__split_libfslcodec_plugins __set_metapkg_rdepends" 98PACKAGESPLITFUNCS =+ "__split_libfslcodec_plugins __set_metapkg_rdepends"
96 99
100PACKAGE_ARCH = "${MACHINE_SOCARCH}"
101
97# We need to ensure we don't have '-src' package overrided 102# We need to ensure we don't have '-src' package overrided
98PACKAGE_DEBUG_SPLIT_STYLE = 'debug-without-src' 103PACKAGE_DEBUG_SPLIT_STYLE = 'debug-without-src'
99 104
@@ -106,7 +111,9 @@ PACKAGES += "${PN}-meta ${PN}-test-bin ${PN}-test-source"
106ALLOW_EMPTY:${PN} = "1" 111ALLOW_EMPTY:${PN} = "1"
107ALLOW_EMPTY:${PN}-meta = "1" 112ALLOW_EMPTY:${PN}-meta = "1"
108 113
109# Ensure we get warnings if we miss something 114# Reset PN's default FILES to empty so any unpackaged file is flagged as a
115# warning instead of silently landing in the main package.
116# nooelint: oelint.var.filesoverride
110FILES:${PN} = "" 117FILES:${PN} = ""
111 118
112FILES:${PN}-dev += "${libdir}/imx-mm/*/*${SOLIBSDEV} \ 119FILES:${PN}-dev += "${libdir}/imx-mm/*/*${SOLIBSDEV} \
@@ -122,5 +129,4 @@ FILES:${PN}-oggvorbis += "${libdir}/imx-mm/audio-codec/wrap/lib_vorbisd_wrap_arm
122FILES:${PN}-nb += "${libdir}/imx-mm/audio-codec/wrap/lib_nbamrd_wrap_arm*_elinux.so.*" 129FILES:${PN}-nb += "${libdir}/imx-mm/audio-codec/wrap/lib_nbamrd_wrap_arm*_elinux.so.*"
123FILES:${PN}-wb += "${libdir}/imx-mm/audio-codec/wrap/lib_wbamrd_wrap_arm*_elinux.so.*" 130FILES:${PN}-wb += "${libdir}/imx-mm/audio-codec/wrap/lib_wbamrd_wrap_arm*_elinux.so.*"
124 131
125PACKAGE_ARCH = "${MACHINE_SOCARCH}"
126COMPATIBLE_MACHINE = "(imx-nxp-bsp)" 132COMPATIBLE_MACHINE = "(imx-nxp-bsp)"
diff --git a/recipes-multimedia/tinycompress/tinycompress_1.2.5.bb b/recipes-multimedia/tinycompress/tinycompress_1.2.5.bb
index bffe15c87..5187c6127 100644
--- a/recipes-multimedia/tinycompress/tinycompress_1.2.5.bb
+++ b/recipes-multimedia/tinycompress/tinycompress_1.2.5.bb
@@ -1,5 +1,9 @@
1DESCRIPTION = "A library to handle compressed formats like MP3 etc." 1SUMMARY = "ALSA compress-offload API library"
2DESCRIPTION = "A userspace library implementing the ALSA compress-offload API, \
3 used to stream hardware-compressed audio formats such as MP3 to \
4 the DSP without decoding them on the CPU."
2HOMEPAGE = "https://github.com/alsa-project/tinycompress" 5HOMEPAGE = "https://github.com/alsa-project/tinycompress"
6SECTION = "multimedia"
3LICENSE = "LGPL-2.1-only | BSD-3-Clause" 7LICENSE = "LGPL-2.1-only | BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://COPYING;md5=cf9105c1a2d4405cbe04bbe3367373a0" 8LIC_FILES_CHKSUM = "file://COPYING;md5=cf9105c1a2d4405cbe04bbe3367373a0"
5DEPENDS = "alsa-lib" 9DEPENDS = "alsa-lib"
@@ -13,5 +17,3 @@ SRC_URI = "git://github.com/alsa-project/tinycompress.git;protocol=https;branch=
13SRCREV = "f3ba6e5c2126f2fb07e3d890f990d50c3e204e67" 17SRCREV = "f3ba6e5c2126f2fb07e3d890f990d50c3e204e67"
14 18
15EXTRA_OECONF:append = " --enable-pcm" 19EXTRA_OECONF:append = " --enable-pcm"
16
17inherit autotools pkgconfig