diff options
author | Brendan Long <b.long@cablelabs.com> | 2013-09-30 15:32:55 -0600 |
---|---|---|
committer | Edward Hervey <edward@collabora.com> | 2013-10-01 09:02:32 +0200 |
commit | 5ff85dd16aa8420b9261113a0ecfbe8d1779bca3 (patch) | |
tree | 16deb8674ac6946075c2f2442c3283645bcc8360 /pkgconfig | |
parent | 2d29f223389ec455bce6cc3bcbf6be917fd6b632 (diff) |
Add gstreamer-mpegts pkg-config file.
https://bugzilla.gnome.org/show_bug.cgi?id=709145
Diffstat (limited to 'pkgconfig')
-rw-r--r-- | pkgconfig/Makefile.am | 9 | ||||
-rw-r--r-- | pkgconfig/gstreamer-mpegts-uninstalled.pc.in | 12 | ||||
-rw-r--r-- | pkgconfig/gstreamer-mpegts.pc.in | 12 | ||||
-rw-r--r-- | pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in | 3 |
4 files changed, 31 insertions, 5 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index 076bd8312..430e1235f 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -3,12 +3,14 @@ pcverfiles = \ gstreamer-plugins-bad-@GST_API_VERSION@.pc \ gstreamer-codecparsers-@GST_API_VERSION@.pc \ - gstreamer-insertbin-@GST_API_VERSION@.pc + gstreamer-insertbin-@GST_API_VERSION@.pc \ + gstreamer-mpegts-@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-insertbin-@GST_API_VERSION@-uninstalled.pc \ + gstreamer-mpegts-@GST_API_VERSION@-uninstalled.pc if HAVE_EGL pcverfiles += gstreamer-egl-@GST_API_VERSION@.pc @@ -35,7 +37,8 @@ pcinfiles = \ gstreamer-plugins-bad.pc.in gstreamer-plugins-bad-uninstalled.pc.in \ gstreamer-codecparsers.pc.in gstreamer-codecparsers-uninstalled.pc.in \ gstreamer-insertbin.pc.in gstreamer-insertbin-uninstalled.pc.in \ - gstreamer-egl.pc.in gstreamer-egl-uninstalled.pc.in + gstreamer-egl.pc.in gstreamer-egl-uninstalled.pc.in \ + gstreamer-mpegts.pc.in gstreamer-mpegts-uninstalled.pc.in DISTCLEANFILES = $(pcinfiles:.in=) EXTRA_DIST = $(pcinfiles) diff --git a/pkgconfig/gstreamer-mpegts-uninstalled.pc.in b/pkgconfig/gstreamer-mpegts-uninstalled.pc.in new file mode 100644 index 000000000..e9aa26187 --- /dev/null +++ b/pkgconfig/gstreamer-mpegts-uninstalled.pc.in @@ -0,0 +1,12 @@ +prefix= +exec_prefix= +libdir=${pcfiledir}/../gst-libs/gst/mpegts +includedir=${pcfiledir}/../gst-libs + +Name: GStreamer MPEG-TS, Uninstalled +Description: GStreamer MPEG-TS support, uninstalled +Requires: gstreamer-@GST_API_VERSION@ gstreamer-base-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} ${libdir}/libgstmpegts-@GST_API_VERSION@.la +Cflags: -I${includedir} + diff --git a/pkgconfig/gstreamer-mpegts.pc.in b/pkgconfig/gstreamer-mpegts.pc.in new file mode 100644 index 000000000..718a949aa --- /dev/null +++ b/pkgconfig/gstreamer-mpegts.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/gstreamer-@GST_API_VERSION@ + +Name: GStreamer MPEG-TS +Description: GStreamer MPEG-TS support +Requires: gstreamer-@GST_API_VERSION@ gstreamer-base-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} -lgstmpegts-@GST_API_VERSION@ +Cflags: -I${includedir} + diff --git a/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in b/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in index a74d2be6b..6fcf77331 100644 --- a/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in +++ b/pkgconfig/gstreamer-plugins-bad-uninstalled.pc.in @@ -10,6 +10,5 @@ Name: GStreamer Bad Plugin libraries, Uninstalled Description: Streaming media framework, bad plugins libraries, uninstalled Version: @VERSION@ Requires: gstreamer-@GST_API_VERSION@ -Libs: -L@abs_top_builddir@/gst-libs/gst/basecamerabinsrc -L@abs_top_builddir@/gst-libs/gst/codecparsers -L@abs_top_builddir@/gst-libs/gst/egl -L@abs_top_builddir@/gst-libs/gst/insertbin -L@abs_top_builddir@/gst-libs/gst/interfaces -L@abs_top_builddir@/gst-libs/gst/signalprocessor -L@abs_top_builddir@/gst-libs/gst/video +Libs: -L@abs_top_builddir@/gst-libs/gst/basecamerabinsrc -L@abs_top_builddir@/gst-libs/gst/codecparsers -L@abs_top_builddir@/gst-libs/gst/egl -L@abs_top_builddir@/gst-libs/gst/insertbin -L@abs_top_builddir@/gst-libs/gst/interfaces -L@abs_top_builddir@/gst-libs/gst/mpegts -L@abs_top_builddir@/gst-libs/gst/signalprocessor -L@abs_top_builddir@/gst-libs/gst/video Cflags: -I@abs_top_srcdir@/gst-libs -I@abs_top_builddir@/gst-libs - |