mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 15:18:21 +00:00
Add gstreamer-plugins-ugly-uninstalled-0.10.pc file so other modules can find our plugins
This .pc file will not be installed, it's only for uninstalled setups, same thing as we do for -good. This is so other modules' unit tests can find our plugins properly in an uninstalled setup.
This commit is contained in:
parent
441b894af5
commit
bafd2cb4c6
4 changed files with 47 additions and 0 deletions
|
@ -492,6 +492,8 @@ tests/Makefile
|
|||
tests/check/Makefile
|
||||
m4/Makefile
|
||||
po/Makefile.in
|
||||
pkgconfig/Makefile
|
||||
pkgconfig/gstreamer-plugins-ugly-uninstalled.pc
|
||||
gst-plugins-ugly.spec
|
||||
)
|
||||
|
||||
|
|
1
pkgconfig/.gitignore
vendored
Normal file
1
pkgconfig/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.pc
|
31
pkgconfig/Makefile.am
Normal file
31
pkgconfig/Makefile.am
Normal file
|
@ -0,0 +1,31 @@
|
|||
### all of the standard pc files we need to generate
|
||||
pcverfiles = \
|
||||
gstreamer-plugins-ugly-@GST_MAJORMINOR@.pc
|
||||
pcverfiles_uninstalled = \
|
||||
gstreamer-plugins-ugly-@GST_MAJORMINOR@-uninstalled.pc
|
||||
|
||||
### all-local: $(pcverfiles) $(pcverfiles_uninstalled)
|
||||
all-local: $(pcverfiles_uninstalled)
|
||||
|
||||
cp_verbose = $(cp_verbose_$(V))
|
||||
cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY))
|
||||
cp_verbose_0 = @echo " CP $@";
|
||||
|
||||
### how to generate versioned .pc files from .pc files in this dir
|
||||
%-@GST_MAJORMINOR@.pc: %.pc
|
||||
$(cp_verbose)cp $< $@
|
||||
%-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
|
||||
$(cp_verbose)cp $< $@
|
||||
|
||||
# do not install for now
|
||||
# pkgconfigdir = $(libdir)/pkgconfig
|
||||
# pkgconfig_DATA = $(pcverfiles)
|
||||
|
||||
CLEANFILES = $(pcverfiles) $(pcverfiles_uninstalled)
|
||||
# pcinfiles = \
|
||||
# gstreamer-plugins-ugly.pc.in gstreamer-plugins-ugly-uninstalled.pc.in
|
||||
pcinfiles = \
|
||||
gstreamer-plugins-ugly-uninstalled.pc.in
|
||||
|
||||
DISTCLEANFILES = $(pcinfiles:.in=)
|
||||
EXTRA_DIST = $(pcinfiles)
|
13
pkgconfig/gstreamer-plugins-ugly-uninstalled.pc.in
Normal file
13
pkgconfig/gstreamer-plugins-ugly-uninstalled.pc.in
Normal file
|
@ -0,0 +1,13 @@
|
|||
prefix=
|
||||
exec_prefix=
|
||||
libdir=@abs_top_builddir@/gst-libs/gst
|
||||
includedir=@abs_top_builddir@/gst-libs
|
||||
pluginsdir=@abs_top_builddir@
|
||||
|
||||
Name: GStreamer Ugly Plugins, Uninstalled
|
||||
Description: Streaming media framework, ugly plugins, uninstalled
|
||||
Version: @VERSION@
|
||||
Requires: gstreamer-@GST_MAJORMINOR@ gstreamer-plugins-base-@GST_MAJORMINOR@
|
||||
|
||||
Libs:
|
||||
Cflags:
|
Loading…
Reference in a new issue