Added pkg-config file to use gst-rtsp-server uninstalled

This commit is contained in:
Sebastian Pölsterl 2009-10-09 16:26:30 +02:00 committed by Wim Taymans
parent 297b6a755a
commit 7d38b37ae6
4 changed files with 24 additions and 5 deletions

View file

@ -277,6 +277,7 @@ bindings/python/codegen/Makefile
bindings/vala/Makefile
pkgconfig/Makefile
pkgconfig/gst-rtsp-server.pc
pkgconfig/gst-rtsp-server-uninstalled.pc
])
AC_OUTPUT

View file

@ -1,2 +1 @@
gst-rtsp-server-0.10.pc
gst-rtsp-server.pc
*.pc

View file

@ -1,14 +1,21 @@
pcfiles = \
gst-rtsp-server-@GST_MAJORMINOR@.pc
all-local: $(pcfiles)
pcfiles_uninstalled = \
gst-rtsp-server-@GST_MAJORMINOR@-uninstalled.pc
all-local: $(pcfiles) $(pcfiles_uninstalled)
### how to generate pc files
%-@GST_MAJORMINOR@.pc: %.pc
cp $< $@
%-@GST_MAJORMINOR@-uninstalled.pc: %-uninstalled.pc
cp $< $@
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = $(pcfiles)
EXTRA_DIST = gst-rtsp-server.pc.in
CLEANFILES = $(pcfiles)
EXTRA_DIST = \
gst-rtsp-server.pc.in \
gst-rtsp-server-uninstalled.pc.in
CLEANFILES = $(pcfiles) $(pcfiles_uninstalled)

View file

@ -0,0 +1,12 @@
# the standard variables don't make sense for an uninstalled copy
prefix=
exec_prefix=
libdir=${pcfiledir}/../gst/rtsp-server
includedir=${pcfiledir}/..
Name: gst-rtsp-server
Description: GStreamer based RTSP server
Version: @VERSION@
Requires: gstreamer-@GST_MAJORMINOR@ gstreamer-plugins-base-@GST_MAJORMINOR@
Libs: ${libdir}/libgstrtspserver-@GST_MAJORMINOR@.la
Cflags: -I${includedir} -I@srcdir@/..