2016-08-12 15:26:31 +00:00
|
|
|
pkgconf = configuration_data()
|
|
|
|
|
2017-10-10 13:45:14 +00:00
|
|
|
pkgconf.set('prefix', join_paths(get_option('prefix')))
|
2016-08-12 15:26:31 +00:00
|
|
|
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', api_version)
|
|
|
|
pkgconf.set('VERSION', gst_version)
|
2017-08-07 23:13:01 +00:00
|
|
|
pkgconf.set('LIBM', libm.found() ? '-lm' : '')
|
2018-08-11 23:21:58 +00:00
|
|
|
pkgconf.set('ZLIB_LIBS', zlib_dep.found() ? '-lz' : '')
|
2018-03-13 21:09:58 +00:00
|
|
|
pkgconf.set('ORC_PC', have_orcc ? 'orc-0.4' : '')
|
2016-08-12 15:26:31 +00:00
|
|
|
|
2017-01-04 13:56:36 +00:00
|
|
|
# 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('allocatorslibdir', join_paths(meson.build_root(), gstallocators.outdir()))
|
|
|
|
pkgconf.set('applibdir', join_paths(meson.build_root(), gstapp.outdir()))
|
|
|
|
pkgconf.set('audiolibdir', join_paths(meson.build_root(), gstaudio.outdir()))
|
|
|
|
pkgconf.set('fftlibdir', join_paths(meson.build_root(), gstfft.outdir()))
|
|
|
|
pkgconf.set('pbutilslibdir', join_paths(meson.build_root(), pbutils.outdir()))
|
|
|
|
pkgconf.set('rifflibdir', join_paths(meson.build_root(), gstriff.outdir()))
|
|
|
|
pkgconf.set('rtplibdir', join_paths(meson.build_root(), gst_rtp.outdir()))
|
|
|
|
pkgconf.set('rtsplibdir', join_paths(meson.build_root(), gst_rtsp.outdir()))
|
|
|
|
pkgconf.set('sdplibdir', join_paths(meson.build_root(), gstsdp.outdir()))
|
|
|
|
pkgconf.set('taglibdir', join_paths(meson.build_root(), gsttag.outdir()))
|
|
|
|
pkgconf.set('videolibdir', join_paths(meson.build_root(), gstvideo.outdir()))
|
|
|
|
|
2016-08-12 15:26:31 +00:00
|
|
|
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
|
|
|
|
|
|
|
|
pkg_files = [
|
|
|
|
'gstreamer-allocators',
|
|
|
|
'gstreamer-app',
|
|
|
|
'gstreamer-audio',
|
|
|
|
'gstreamer-fft',
|
|
|
|
'gstreamer-pbutils',
|
|
|
|
'gstreamer-plugins-base',
|
|
|
|
'gstreamer-riff',
|
|
|
|
'gstreamer-rtp',
|
|
|
|
'gstreamer-rtsp',
|
|
|
|
'gstreamer-sdp',
|
|
|
|
'gstreamer-tag',
|
|
|
|
'gstreamer-video',
|
|
|
|
]
|
|
|
|
|
2017-12-17 20:48:11 +00:00
|
|
|
# XXX: requires the meson.build to be parsed/executed after gst-libs/gl/meson.build
|
|
|
|
if build_gstgl
|
|
|
|
pkgconf.set('gllibdir', join_paths(meson.build_root(), gstgl.outdir()))
|
|
|
|
pkg_files += ['gstreamer-gl']
|
|
|
|
pkgconf.set('GL_APIS', ' '.join(enabled_gl_apis))
|
|
|
|
pkgconf.set('GL_WINDOWS', ' '.join(enabled_gl_winsys))
|
|
|
|
pkgconf.set('GL_PLATFORMS', ' '.join(enabled_gl_platforms))
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:26:31 +00:00
|
|
|
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)
|
2017-01-04 13:56:36 +00:00
|
|
|
|
|
|
|
infile = p + '-uninstalled.pc.in'
|
|
|
|
outfile = p + '-1.0-uninstalled.pc'
|
|
|
|
configure_file(input : infile,
|
|
|
|
output : outfile,
|
|
|
|
configuration : pkgconf)
|
2016-08-12 15:26:31 +00:00
|
|
|
endforeach
|