summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2026-06-14 02:04:02 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2026-06-14 02:04:02 -0300
commit92ccd3d88a87182dd0da84b3ec3d243bc3be1e81 (patch)
treec3606406811293654ae681a3bfcf4216dd3680a7
parente8841d841bc9d4abad013b290018229c55b27679 (diff)
downloadmeta-freescale-consolidate-recipes-from-distro.tar.gz
gst-variable-rtsp-server: import from meta-freescale-distroconsolidate-recipes-from-distro
Move the recipe into meta-freescale as part of consolidating all recipe content into a single layer. meta-freescale-distro is becoming a thin backward-compatibility layer that only keeps the distro definitions for the wrynose LTS lifetime and is no longer used for recipe development. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-multimedia/gstreamer/gst-variable-rtsp-server_1.0.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-multimedia/gstreamer/gst-variable-rtsp-server_1.0.bb b/recipes-multimedia/gstreamer/gst-variable-rtsp-server_1.0.bb
new file mode 100644
index 000000000..96a7ce6ab
--- /dev/null
+++ b/recipes-multimedia/gstreamer/gst-variable-rtsp-server_1.0.bb
@@ -0,0 +1,25 @@
1# Copyright (C) 2017 NXP Semiconductor
2
3SUMMARY = "RTSP server for live-stream from a v4l2 video source"
4HOMEPAGE = "https://github.com/Gateworks/gst-gateworks-apps"
5SECTION = "multimedia"
6
7LICENSE = "GPL-3.0-only"
8
9inherit pkgconfig
10
11DEPENDS = "gstreamer1.0 gstreamer1.0-rtsp-server glib-2.0"
12
13LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
14
15SRC_URI = " \
16 git://github.com/Gateworks/gst-gateworks-apps;branch=master;protocol=https \
17"
18
19SRCREV = "490564815d8049dbdd79087f546835b673ba6e88"
20
21
22do_install() {
23 install -m 0755 -D ${S}/bin/gst-variable-rtsp-server \
24 ${D}/${bindir}/gst-variable-rtsp-server
25}