mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
e0fba540f2
Generating those files is useful for users building the GStreamer stack using meson and having to link it to another project which is still using the autotools. https://bugzilla.gnome.org/show_bug.cgi?id=776810
33 lines
1.1 KiB
Meson
33 lines
1.1 KiB
Meson
pkgconf = configuration_data()
|
|
|
|
pkgconf.set('prefix', get_option('prefix'))
|
|
pkgconf.set('exec_prefix', '${prefix}')
|
|
pkgconf.set('libdir', '${prefix}/@0@'.format(get_option('libdir')))
|
|
pkgconf.set('includedir', '${prefix}/@0@'.format(get_option('includedir')))
|
|
pkgconf.set('GST_API_VERSION', apiversion)
|
|
pkgconf.set('VERSION', gst_version)
|
|
|
|
# needed for generating -uninstalled.pc files
|
|
pkgconf.set('abs_top_builddir', join_paths(meson.current_build_dir(), '..'))
|
|
pkgconf.set('abs_top_srcdir', join_paths(meson.current_source_dir(), '..'))
|
|
pkgconf.set('geslibdir', join_paths(meson.build_root(), libges.outdir()))
|
|
|
|
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
|
|
|
|
pkg_files = ['gst-editing-services']
|
|
|
|
foreach p : pkg_files
|
|
infile = p + '.pc.in'
|
|
outfile = p + '-1.0.pc'
|
|
configure_file(input : infile,
|
|
output : outfile,
|
|
configuration : pkgconf,
|
|
install_dir : pkg_install_dir)
|
|
|
|
infile = p + '-uninstalled.pc.in'
|
|
outfile = p + '-1.0-uninstalled.pc'
|
|
configure_file(input : infile,
|
|
output : outfile,
|
|
configuration : pkgconf)
|
|
endforeach
|
|
|