diff options
author | Jonatan Pålsson <jonatan.palsson@pelagicore.com> | 2017-01-30 09:11:56 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-02-13 18:43:26 +0100 |
commit | f4559c4cca2a5983cb9df722021991ff75ad2fe5 (patch) | |
tree | 6236d5414e2b3fca77ed1c8100b69831e1ee0ff1 /meta-multimedia/recipes-support | |
parent | 91d4dd4231330af327e8d0767c4baa07c1dc260f (diff) | |
download | meta-openembedded-f4559c4cca2a5983cb9df722021991ff75ad2fe5.tar.gz |
gst-instruments: add recipe
Add recipe for gst-instruments. This is a set of utilities used to
profile CPU usage of GStreamer pipeline elements. The gst-top utility is
used to launch a gstreamer pipeline and record its profile, and the
gst-report utility is used to analyze reports gathered by gst-top.
Signed-off-by: Jonatan Pålsson <jonatan.palsson@pelagicore.com>
Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-support')
-rw-r--r-- | meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb b/meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb new file mode 100644 index 000000000..b6cdc4f14 --- /dev/null +++ b/meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Profiling utilities for GStreamer 1.0 pipelines" | ||
2 | HOMEPAGE = "https://github.com/kirushyk/gst-instruments" | ||
3 | SECTION = "multimedia" | ||
4 | |||
5 | LICENSE = "LGPL-3.0" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e6a600fd5e1d9cbde2d983680233ad02" | ||
7 | |||
8 | SRC_URI = "https://github.com/kirushyk/gst-instruments/archive/${PV}.tar.gz" | ||
9 | |||
10 | SRC_URI[md5sum] = "14a394dec25642848b17f9999f1b4999" | ||
11 | SRC_URI[sha256sum] = "5565658a33ff9596946541304fbdd3b3683dbb82171a0e6ce56f42b64a01e58d" | ||
12 | |||
13 | S = "${WORKDIR}/gst-instruments-${PV}" | ||
14 | |||
15 | FILES_${PN} += "${libdir}/*" | ||
16 | |||
17 | INSANE_SKIP_${PN} = "dev-so" | ||
18 | |||
19 | DEPENDS = "gstreamer1.0" | ||
20 | |||
21 | inherit autotools pkgconfig | ||
22 | |||