2016-08-12 15:51:45 +00:00
|
|
|
pkgconf = configuration_data()
|
|
|
|
|
2017-10-10 13:45:47 +00:00
|
|
|
pkgconf.set('prefix', join_paths(get_option('prefix')))
|
2016-08-12 15:51:45 +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-01-04 15:51:10 +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('audiolibdir', join_paths(meson.build_root(), gstbadaudio.outdir()))
|
|
|
|
pkgconf.set('videolibdir', join_paths(meson.build_root(), gstbadvideo.outdir()))
|
|
|
|
pkgconf.set('codecparserslibdir', join_paths(meson.build_root(), gstcodecparsers.outdir()))
|
|
|
|
pkgconf.set('insertbinlibdir', join_paths(meson.build_root(), gstinsertbin.outdir()))
|
|
|
|
pkgconf.set('mpegtslibdir', join_paths(meson.build_root(), gstmpegts.outdir()))
|
|
|
|
pkgconf.set('playerlibdir', join_paths(meson.build_root(), gstplayer.outdir()))
|
|
|
|
pkgconf.set('basecamerabinsrclibdir', join_paths(meson.build_root(), gstbasecamerabin.outdir()))
|
|
|
|
pkgconf.set('photographylibdir', join_paths(meson.build_root(), gstphotography.outdir()))
|
2017-01-31 09:56:59 +00:00
|
|
|
pkgconf.set('webrtclibdir', join_paths(meson.build_root(), gstwebrtc.outdir()))
|
2017-01-04 15:51:10 +00:00
|
|
|
|
2016-08-12 15:51:45 +00:00
|
|
|
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
|
|
|
|
|
|
|
|
pkg_libs = [
|
|
|
|
'bad-audio',
|
|
|
|
'bad-video',
|
|
|
|
'codecparsers',
|
|
|
|
'insertbin',
|
|
|
|
'mpegts',
|
|
|
|
'player',
|
|
|
|
'plugins-bad',
|
2017-01-31 09:56:59 +00:00
|
|
|
'webrtc',
|
2016-08-12 15:51:45 +00:00
|
|
|
]
|
|
|
|
|
2017-11-28 13:44:54 +00:00
|
|
|
#if use_wayland
|
|
|
|
# pkgconf.set('waylandlibdir', join_paths(meson.build_root(), gstwayland.outdir()))
|
|
|
|
# pkg_libs += 'wayland'
|
|
|
|
#endif
|
2017-01-05 15:31:14 +00:00
|
|
|
|
2016-08-12 15:51:45 +00:00
|
|
|
foreach p : pkg_libs
|
|
|
|
infile = 'gstreamer-@0@.pc.in'.format(p)
|
|
|
|
outfile = 'gstreamer-@0@-@1@.pc'.format(p, api_version)
|
|
|
|
configure_file(input : infile,
|
|
|
|
output : outfile,
|
|
|
|
configuration : pkgconf,
|
|
|
|
install_dir : pkg_install_dir)
|
2017-01-04 15:51:10 +00:00
|
|
|
|
|
|
|
infile = 'gstreamer-@0@-uninstalled.pc.in'.format(p)
|
|
|
|
outfile = 'gstreamer-@0@-@1@-uninstalled.pc'.format(p, api_version)
|
|
|
|
configure_file(input : infile,
|
|
|
|
output : outfile,
|
|
|
|
configuration : pkgconf)
|
2016-08-12 15:51:45 +00:00
|
|
|
endforeach
|