mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
24 lines
836 B
Meson
24 lines
836 B
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', api_version)
|
|
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(), '..'))
|
|
|
|
pkg_install_dir = '@0@/pkgconfig'.format(get_option('libdir'))
|
|
|
|
pkg_files = ['gstreamer-plugins-good']
|
|
|
|
foreach p : pkg_files
|
|
infile = p + '-uninstalled.pc.in'
|
|
outfile = p + '-1.0-uninstalled.pc'
|
|
configure_file(input : infile,
|
|
output : outfile,
|
|
configuration : pkgconf)
|
|
endforeach
|