diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | pkgconfig/Makefile.am | 9 | ||||
-rw-r--r-- | pkgconfig/gstreamer-player-uninstalled.pc.in | 12 | ||||
-rw-r--r-- | pkgconfig/gstreamer-player.pc.in | 12 |
4 files changed, 32 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 3b104a45b..59d60acef 100644 --- a/configure.ac +++ b/configure.ac @@ -3708,6 +3708,8 @@ pkgconfig/gstreamer-gl.pc pkgconfig/gstreamer-gl-uninstalled.pc pkgconfig/gstreamer-mpegts.pc pkgconfig/gstreamer-mpegts-uninstalled.pc +pkgconfig/gstreamer-player.pc +pkgconfig/gstreamer-player-uninstalled.pc pkgconfig/gstreamer-wayland.pc pkgconfig/gstreamer-wayland-uninstalled.pc pkgconfig/gstreamer-bad-base.pc diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index 3e53a6ee5..c75ec3666 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -4,13 +4,15 @@ pcverfiles = \ gstreamer-plugins-bad-@GST_API_VERSION@.pc \ gstreamer-codecparsers-@GST_API_VERSION@.pc \ gstreamer-insertbin-@GST_API_VERSION@.pc \ - gstreamer-mpegts-@GST_API_VERSION@.pc + gstreamer-mpegts-@GST_API_VERSION@.pc \ + gstreamer-player-@GST_API_VERSION@.pc pcverfiles_uninstalled = \ gstreamer-plugins-bad-@GST_API_VERSION@-uninstalled.pc \ gstreamer-codecparsers-@GST_API_VERSION@-uninstalled.pc \ gstreamer-insertbin-@GST_API_VERSION@-uninstalled.pc \ - gstreamer-mpegts-@GST_API_VERSION@-uninstalled.pc + gstreamer-mpegts-@GST_API_VERSION@-uninstalled.pc \ + gstreamer-player-@GST_API_VERSION@-uninstalled.pc if HAVE_GST_GL pcverfiles += gstreamer-gl-@GST_API_VERSION@.pc @@ -38,7 +40,8 @@ pcinfiles = \ gstreamer-codecparsers.pc.in gstreamer-codecparsers-uninstalled.pc.in \ gstreamer-gl.pc.in gstreamer-gl-uninstalled.pc.in \ gstreamer-insertbin.pc.in gstreamer-insertbin-uninstalled.pc.in \ - gstreamer-mpegts.pc.in gstreamer-mpegts-uninstalled.pc.in + gstreamer-mpegts.pc.in gstreamer-mpegts-uninstalled.pc.in \ + gstreamer-player.pc.in gstreamer-player-uninstalled.pc.in DISTCLEANFILES = $(pcinfiles:.in=) EXTRA_DIST = $(pcinfiles) diff --git a/pkgconfig/gstreamer-player-uninstalled.pc.in b/pkgconfig/gstreamer-player-uninstalled.pc.in new file mode 100644 index 000000000..82e6ee62c --- /dev/null +++ b/pkgconfig/gstreamer-player-uninstalled.pc.in @@ -0,0 +1,12 @@ +prefix= +exec_prefix= +libdir=${pcfiledir}/../gst-libs/gst/player +includedir=${pcfiledir}/../gst-libs + +Name: GStreamer Player, Uninstalled +Description: GStreamer Player convenience library, uninstalled +Requires: gstreamer-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} ${libdir}/libgstplayer-@GST_API_VERSION@.la +Cflags: -I${includedir} + diff --git a/pkgconfig/gstreamer-player.pc.in b/pkgconfig/gstreamer-player.pc.in new file mode 100644 index 000000000..f296e7f3a --- /dev/null +++ b/pkgconfig/gstreamer-player.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/gstreamer-@GST_API_VERSION@ + +Name: GStreamer Player +Description: GStreamer Player convenience library +Requires: gstreamer-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} -lgstplayer-@GST_API_VERSION@ +Cflags: -I${includedir} + |