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
7b0a5ad309
commit
89d9b7fa99
3 changed files with 22 additions and 2 deletions
|
@ -182,5 +182,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|||
GST_VERSION_MINOR,
|
||||
libav,
|
||||
"All libav codecs and formats (" LIBAV_SOURCE ")",
|
||||
plugin_init, PACKAGE_VERSION, LICENSE,
|
||||
"libav", "http://www.libav.org")
|
||||
plugin_init, PACKAGE_VERSION, LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
||||
|
|
17
meson.build
17
meson.build
|
@ -8,6 +8,8 @@ gst_version = meson.project_version()
|
|||
version_arr = gst_version.split('.')
|
||||
gst_version_major = version_arr[0]
|
||||
gst_version_minor = version_arr[1]
|
||||
gst_version_micro = version_arr[2]
|
||||
gst_version_nano = version_arr.get(3, 0)
|
||||
|
||||
libavfilter_dep = dependency('libavfilter', version: '>= 6.47.100')
|
||||
libavformat_dep = dependency('libavformat', version: '>= 57.41.100')
|
||||
|
@ -33,6 +35,21 @@ cdata = configuration_data()
|
|||
cdata.set('LIBAV_SOURCE', '"system install"')
|
||||
cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
|
||||
cdata.set('PACKAGE', '"gst-libav"')
|
||||
|
||||
# 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 FFMPEG Plug-ins source release')
|
||||
elif gst_version_nano == 1
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer FFMPEG Plug-ins git')
|
||||
else
|
||||
cdata.set_quoted('GST_PACKAGE_NAME', 'GStreamer FFMPEG Plug-ins prerelease')
|
||||
endif
|
||||
endif
|
||||
cdata.set_quoted('GST_PACKAGE_ORIGIN', get_option('with-package-origin'))
|
||||
|
||||
|
||||
check_headers = [['unistd.h', 'HAVE_UNISTD_H']]
|
||||
|
||||
foreach h : check_headers
|
||||
|
|
4
meson_options.txt
Normal file
4
meson_options.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
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