diff options
author | Daniel Gomez <daniel@qtec.com> | 2022-09-29 18:10:57 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-09-29 13:32:16 -0700 |
commit | 26ad773c4c74c1c6b132acc89ca14ee03dfcc01d (patch) | |
tree | 884ccd20af447bad009c92feb4cb498a3b95d428 /meta-multimedia/recipes-support | |
parent | f6846875916e6e1c6db825685cf4dfa2e9a24749 (diff) | |
download | meta-openembedded-26ad773c4c74c1c6b132acc89ca14ee03dfcc01d.tar.gz |
gst-instruments: Update 0.2.3 -> 0.3.1+cb8977a
The project has moved the build system from autotools to meson. Latest
stable autotools version: 0.2.4.
Update to master: Version 0.3.1+cb8977a.
Format style with oe-stylize.py.
Add ui package to enable graphical interface.
Fix QA -dev issue:
ERROR: gst-instruments-git-r0 do_package_qa: QA Issue: -dev package
gst-instruments-dev contains non-symlink .so
'/usr/lib/libgstintercept.so'
-dev package gst-instruments-dev contains non-symlink .so
'/usr/lib/gstreamer-1.0/libgstinstruments.so' [dev-elf]
Remove dev-so from QA skip. Not required anymore.
Signed-off-by: Daniel Gomez <daniel@qtec.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-support')
-rw-r--r-- | meta-multimedia/recipes-support/gst-instruments/gst-instruments_git.bb | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/meta-multimedia/recipes-support/gst-instruments/gst-instruments_git.bb b/meta-multimedia/recipes-support/gst-instruments/gst-instruments_git.bb index 9a6c71cb71..8f0ad65120 100644 --- a/meta-multimedia/recipes-support/gst-instruments/gst-instruments_git.bb +++ b/meta-multimedia/recipes-support/gst-instruments/gst-instruments_git.bb | |||
@@ -4,17 +4,20 @@ SECTION = "multimedia" | |||
4 | 4 | ||
5 | LICENSE = "LGPL-3.0-only" | 5 | LICENSE = "LGPL-3.0-only" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e6a600fd5e1d9cbde2d983680233ad02" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e6a600fd5e1d9cbde2d983680233ad02" |
7 | |||
8 | DEPENDS = "gstreamer1.0" | 7 | DEPENDS = "gstreamer1.0" |
8 | SRCREV = "cb8977a6711657e32853159cd539d1d75fcbc772" | ||
9 | PV = "0.3.1+git${SRCPV}" | ||
10 | |||
11 | SRC_URI = "git://github.com/kirushyk/gst-instruments.git;protocol=https;branch=master" | ||
9 | 12 | ||
10 | S = "${WORKDIR}/git" | 13 | S = "${WORKDIR}/git" |
11 | SRCREV = "3b862e52e5c53ad1023dc6808effa4cb75572c4b" | 14 | |
12 | SRC_URI = "git://github.com/kirushyk/gst-instruments.git;protocol=https;;branch=master" | 15 | inherit vala meson pkgconfig |
13 | 16 | ||
14 | FILES:${PN}-staticdev += "${libdir}/gstreamer-1.0/*a" | 17 | FILES:${PN}-staticdev += "${libdir}/gstreamer-1.0/*a" |
15 | FILES:${PN} += "${libdir}/*" | 18 | FILES:${PN} += "${libdir}/*" |
16 | 19 | ||
17 | INSANE_SKIP:${PN} = "dev-so" | 20 | INSANE_SKIP:${PN}-dev = "dev-elf" |
18 | |||
19 | inherit autotools pkgconfig | ||
20 | 21 | ||
22 | PACKAGECONFIG ??= "ui" | ||
23 | PACKAGECONFIG[ui] = "-Dui=enabled,-Dui=disabled,gtk+3" | ||