Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStéphane Cerveau <scerveau@collabora.com>2021-02-26 12:01:56 +0300
committerStéphane Cerveau <scerveau@collabora.com>2021-02-26 13:18:54 +0300
commita4b5d8bb60cea80e74926b379c464fc4d999d3cb (patch)
treedee98e44ff784920f74b211a44a50f8b641912d2
parent3e275580957815195d356408fbbcb891f9fe5777 (diff)
meson: add uninstalled var for bash-completion
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/766>
-rw-r--r--gst/meson.build1
-rw-r--r--meson.build4
2 files changed, 5 insertions, 0 deletions
diff --git a/gst/meson.build b/gst/meson.build
index 28c1d83e4b..c70998cdaf 100644
--- a/gst/meson.build
+++ b/gst/meson.build
@@ -253,6 +253,7 @@ libgst = library('gstreamer-1.0', gst_sources,
pkgconfig.generate(libgst,
libraries : [glib_dep, gobject_dep],
variables : pkgconfig_variables,
+ uninstalled_variables: pkgconfig_uninstalled_variables,
subdirs : pkgconfig_subdirs,
name : 'gstreamer-1.0',
description : 'Streaming media framework',
diff --git a/meson.build b/meson.build
index 1a860c356c..c4e8774f55 100644
--- a/meson.build
+++ b/meson.build
@@ -579,6 +579,10 @@ pkgconfig_variables = ['exec_prefix=${prefix}',
'typelibdir=${libdir}/girepository-1.0',
'libexecdir=${prefix}/libexec',
'pluginscannerdir=${libexecdir}/gstreamer-1.0']
+pkgconfig_uninstalled_variables = ['exec_prefix=${prefix}',
+ 'gstreamerdir=${prefix}/subprojects/gstreamer',
+ 'bashhelpersdir=${gstreamerdir}/data/bash-completion/helpers',
+ 'helpersdir=${gstreamerdir}/libs/gst/helpers']
pkgconfig_subdirs = ['gstreamer-1.0']
subdir('gst')