mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
meson: add options to set package name and origin
https://bugzilla.gnome.org/show_bug.cgi?id=782172
This commit is contained in:
parent
3b3bc34e9a
commit
7fb0aeac10
2 changed files with 18 additions and 2 deletions
16
meson.build
16
meson.build
|
@ -99,12 +99,24 @@ core_conf.set('GETTEXT_PACKAGE', '"gst-plugins-base-1.0"')
|
||||||
core_conf.set('PACKAGE', '"gst-plugins-base"')
|
core_conf.set('PACKAGE', '"gst-plugins-base"')
|
||||||
core_conf.set('VERSION', '"@0@"'.format(gst_version))
|
core_conf.set('VERSION', '"@0@"'.format(gst_version))
|
||||||
core_conf.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
|
core_conf.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
|
||||||
core_conf.set('GST_PACKAGE_NAME', '"GStreamer Base Plug-ins"')
|
|
||||||
core_conf.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"')
|
|
||||||
core_conf.set('GST_API_VERSION', '"@0@"'.format(api_version))
|
core_conf.set('GST_API_VERSION', '"@0@"'.format(api_version))
|
||||||
core_conf.set('GST_INSTALL_PLUGINS_HELPER', '"/FIXME"')
|
core_conf.set('GST_INSTALL_PLUGINS_HELPER', '"/FIXME"')
|
||||||
core_conf.set('GST_DATADIR', '"/FIXME"')
|
core_conf.set('GST_DATADIR', '"/FIXME"')
|
||||||
core_conf.set('GST_LICENSE', '"LGPL"')
|
core_conf.set('GST_LICENSE', '"LGPL"')
|
||||||
|
|
||||||
|
# GStreamer package name and origin url
|
||||||
|
gst_package_name = get_option('with-package-name')
|
||||||
|
if gst_package_name == ''
|
||||||
|
if gst_version_nano == 0
|
||||||
|
core_conf.set_quoted('GST_PACKAGE_NAME', 'GStreamer Base Plug-ins source release')
|
||||||
|
elif gst_version_nano == 1
|
||||||
|
core_conf.set_quoted('GST_PACKAGE_NAME', 'GStreamer Base Plug-ins git')
|
||||||
|
else
|
||||||
|
core_conf.set_quoted('GST_PACKAGE_NAME', 'GStreamer Base Plug-ins prerelease')
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
core_conf.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin'))
|
||||||
|
|
||||||
# FIXME: These should be configure options
|
# FIXME: These should be configure options
|
||||||
core_conf.set('DEFAULT_VIDEOSINK', '"autovideosink"')
|
core_conf.set('DEFAULT_VIDEOSINK', '"autovideosink"')
|
||||||
core_conf.set('DEFAULT_AUDIOSINK', '"autoaudiosink"')
|
core_conf.set('DEFAULT_AUDIOSINK', '"autoaudiosink"')
|
||||||
|
|
|
@ -5,3 +5,7 @@ option('disable_introspection',
|
||||||
type : 'boolean', value : false,
|
type : 'boolean', value : false,
|
||||||
description : 'Whether to disable the introspection generation')
|
description : 'Whether to disable the introspection generation')
|
||||||
option('disable_gtkdoc', type : 'boolean', value : false)
|
option('disable_gtkdoc', type : 'boolean', value : false)
|
||||||
|
option('with-package-name', type : 'string',
|
||||||
|
description : 'package name to use in plugins')
|
||||||
|
option('with-package-origin', type : 'string', value : 'Unknown package origin',
|
||||||
|
description : 'package origin URL to use in plugins')
|
||||||
|
|
Loading…
Reference in a new issue