mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
pkgconfig: remove gst-plugins-good-1.0-uninstalled.pc
This was never installed and it was only used by the uninstalled autotools dev environment to locate the -good plugins for use in unit tests in gstreamer modules higher up the stack. It is no longer needed now that we no longer have an autotools build.
This commit is contained in:
parent
19beb2f731
commit
0998c16432
3 changed files with 0 additions and 38 deletions
|
@ -370,7 +370,6 @@ subdir('gst')
|
|||
subdir('sys')
|
||||
subdir('ext')
|
||||
subdir('tests')
|
||||
subdir('pkgconfig')
|
||||
subdir('docs')
|
||||
|
||||
# xgettext is optional (on Windows for instance)
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
prefix=
|
||||
exec_prefix=
|
||||
libdir=@abs_top_builddir@/gst-libs/gst
|
||||
includedir=@abs_top_builddir@/gst-libs
|
||||
pluginsdir=@abs_top_builddir@
|
||||
|
||||
Name: GStreamer Good Plugins, Uninstalled
|
||||
Description: Streaming media framework, good plugins, uninstalled
|
||||
Version: @VERSION@
|
||||
Requires: gstreamer-@GST_API_VERSION@ gstreamer-plugins-base-@GST_API_VERSION@
|
||||
|
||||
Libs:
|
||||
Cflags:
|
|
@ -1,24 +0,0 @@
|
|||
pkgconf = configuration_data()
|
||||
|
||||
pkgconf.set('prefix', join_paths(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
|
Loading…
Reference in a new issue