mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +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
fb00a357cd
commit
c35292505b
3 changed files with 18 additions and 5 deletions
16
meson.build
16
meson.build
|
@ -136,9 +136,19 @@ cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
|
|||
cdata.set('GST_LICENSE', '"LGPL"')
|
||||
cdata.set('PACKAGE', '"gst-plugins-good"')
|
||||
cdata.set('GETTEXT_PACKAGE', '"gst-plugins-good-1.0"')
|
||||
cdata.set('PACKAGE_NAME', '"GStreamer Good Plug-ins"')
|
||||
cdata.set('GST_PACKAGE_NAME', '"GStreamer Good Plug-ins"')
|
||||
cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"') # FIXME: make configurable
|
||||
|
||||
# GStreamer package name and origin url
|
||||
gst_package_name = get_option('with-package-name')
|
||||
if gst_package_name == ''
|
||||
if gst_version_nano == 0
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer Good Plug-ins source release')
|
||||
elif gst_version_nano == 1
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer Good Plug-ins git')
|
||||
else
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer Good Plug-ins prerelease')
|
||||
endif
|
||||
endif
|
||||
cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin'))
|
||||
|
||||
# Mandatory GST deps
|
||||
gst_dep = dependency('gstreamer-1.0', version : gst_req,
|
||||
|
|
|
@ -4,3 +4,7 @@ option('v4l2-probe', type : 'boolean', value : true)
|
|||
option('with-libv4l2', type : 'boolean', value : true)
|
||||
# Whether to use orc or not (auto will autodetect, yes will error out if not found)
|
||||
option('use_orc', type : 'combo', choices : ['yes', 'no', 'auto'], value : 'auto')
|
||||
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')
|
||||
|
|
|
@ -212,8 +212,7 @@ autodetect_suite (void)
|
|||
"autodetect-test",
|
||||
"autodetect test elements",
|
||||
plugin_init,
|
||||
VERSION, "LGPL", PACKAGE, PACKAGE_NAME,
|
||||
"http://gstreamer.freedesktop.org");
|
||||
VERSION, "LGPL", PACKAGE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);
|
||||
|
||||
suite_add_tcase (s, tc_chain);
|
||||
tcase_add_test (tc_chain, test_autovideosink_plugs_best);
|
||||
|
|
Loading…
Reference in a new issue