mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
Added pkgconfig file
This commit is contained in:
parent
eb68a892a6
commit
26745cdbf5
4 changed files with 31 additions and 0 deletions
|
@ -4,6 +4,7 @@ SUBDIRS = \
|
|||
gst \
|
||||
m4 \
|
||||
common \
|
||||
pkgconfig \
|
||||
examples
|
||||
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
|
|
|
@ -218,6 +218,11 @@ m4/Makefile
|
|||
gst/Makefile
|
||||
gst/rtsp-server/Makefile
|
||||
examples/Makefile
|
||||
bindings/Makefile
|
||||
bindings/python/Makefile
|
||||
bindings/python/codegen/Makefile
|
||||
pkgconfig/Makefile
|
||||
pkgconfig/gst-rtsp-server.pc
|
||||
])
|
||||
AC_OUTPUT
|
||||
|
||||
|
|
14
pkgconfig/Makefile.am
Normal file
14
pkgconfig/Makefile.am
Normal file
|
@ -0,0 +1,14 @@
|
|||
pcfiles = \
|
||||
gst-rtsp-server-@GST_MAJORMINOR@.pc
|
||||
|
||||
all-local: $(pcfiles)
|
||||
|
||||
### how to generate pc files
|
||||
%-@GST_MAJORMINOR@.pc: %.pc
|
||||
cp $< $@
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = $(pcfiles)
|
||||
|
||||
EXTRA_DIST = gst-rtsp-server.pc.in
|
||||
CLEANFILES = $(pcfiles)
|
11
pkgconfig/gst-rtsp-server.pc.in
Normal file
11
pkgconfig/gst-rtsp-server.pc.in
Normal file
|
@ -0,0 +1,11 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@/gstreamer-@GST_MAJORMINOR@
|
||||
|
||||
Name: gst-rtsp-server
|
||||
Description: GStreamer based RTSP server
|
||||
Version: 0.10.1
|
||||
Requires: gstreamer-@GST_MAJORMINOR@ gstreamer-base-@GST_MAJORMINOR@
|
||||
Libs: -L${libdir} -lgstrtspserver-@GST_MAJORMINOR@
|
||||
Cflags: -I${includedir}
|
Loading…
Reference in a new issue