summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-multimedia/recipes-support/gst-instruments/gst-instruments_git.bb15
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
5LICENSE = "LGPL-3.0-only" 5LICENSE = "LGPL-3.0-only"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=e6a600fd5e1d9cbde2d983680233ad02" 6LIC_FILES_CHKSUM = "file://LICENSE;md5=e6a600fd5e1d9cbde2d983680233ad02"
7
8DEPENDS = "gstreamer1.0" 7DEPENDS = "gstreamer1.0"
8SRCREV = "cb8977a6711657e32853159cd539d1d75fcbc772"
9PV = "0.3.1+git${SRCPV}"
10
11SRC_URI = "git://github.com/kirushyk/gst-instruments.git;protocol=https;branch=master"
9 12
10S = "${WORKDIR}/git" 13S = "${WORKDIR}/git"
11SRCREV = "3b862e52e5c53ad1023dc6808effa4cb75572c4b" 14
12SRC_URI = "git://github.com/kirushyk/gst-instruments.git;protocol=https;;branch=master" 15inherit vala meson pkgconfig
13 16
14FILES:${PN}-staticdev += "${libdir}/gstreamer-1.0/*a" 17FILES:${PN}-staticdev += "${libdir}/gstreamer-1.0/*a"
15FILES:${PN} += "${libdir}/*" 18FILES:${PN} += "${libdir}/*"
16 19
17INSANE_SKIP:${PN} = "dev-so" 20INSANE_SKIP:${PN}-dev = "dev-elf"
18
19inherit autotools pkgconfig
20 21
22PACKAGECONFIG ??= "ui"
23PACKAGECONFIG[ui] = "-Dui=enabled,-Dui=disabled,gtk+3"