data \
gst \
tools \
+ pkgconfig \
po
DIST_SUBDIRS = $(SUBDIRS)
gst/validate/Makefile
tools/Makefile
data/Makefile
+pkgconfig/Makefile
+pkgconfig/gst-validate-uninstalled.pc
+pkgconfig/gst-validate.pc
po/Makefile.in
])
AC_OUTPUT
--- /dev/null
+pcfiles = \
+ gst-validate-@GST_API_VERSION@.pc
+
+pcfiles_uninstalled = \
+ gst-validate-@GST_API_VERSION@-uninstalled.pc
+
+all-local: $(pcfiles) $(pcfiles_uninstalled)
+
+### how to generate pc files
+%-@GST_API_VERSION@.pc: %.pc
+ cp $< $@
+%-@GST_API_VERSION@-uninstalled.pc: %-uninstalled.pc
+ cp $< $@
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = $(pcfiles)
+
+EXTRA_DIST = \
+ gst-validate.pc.in \
+ gst-validate-uninstalled.pc.in
+CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)
--- /dev/null
+# the standard variables don't make sense for an uninstalled copy
+prefix=
+exec_prefix=
+libdir=@abs_top_builddir@/ges
+includedir=@abs_top_builddir@
+
+Name: gst-validate
+Description: GStreamer Validate
+Version: @VERSION@
+Requires: gstreamer-@GST_API_VERSION@
+Libs: @abs_top_builddir@/gst/validate/libgstvalidate-@GST_API_VERSION@.la
+Cflags: -I@abs_top_srcdir@ -I@abs_top_builddir@
--- /dev/null
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@/gstreamer-@GST_API_VERSION@
+
+Name: gst-validate
+Description: Gstreamer Validate
+Version: @VERSION@
+Requires: gstreamer-@GST_API_VERSION@
+Libs: -L${libdir} -lgstvalidate@GST_API_VERSION@
+Cflags: -I${includedir}