2016-01-27 01:03:52 +00:00
|
|
|
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', api_version)
|
|
|
|
pkgconf.set('VERSION', gst_version)
|
|
|
|
|
2017-01-04 15:20:54 +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('rtspserverlibdir', join_paths(meson.build_root(), gst_rtsp_server.outdir()))
|
|
|
|
|
2016-01-27 01:03:52 +00:00
|
|
|
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
|
|
|
|
|
|
|
|
configure_file(input : 'gstreamer-rtsp-server.pc.in',
|
|
|
|
output : 'gstreamer-rtsp-server-1.0.pc',
|
|
|
|
configuration : pkgconf,
|
2017-08-18 16:37:01 +00:00
|
|
|
install_dir : pkg_install_dir)
|
2017-01-04 15:20:54 +00:00
|
|
|
|
|
|
|
configure_file(input : 'gstreamer-rtsp-server-uninstalled.pc.in',
|
|
|
|
output : 'gstreamer-rtsp-server-1.0-uninstalled.pc',
|
2017-08-18 16:37:01 +00:00
|
|
|
configuration : pkgconf)
|