diff options
author | Arnaud Vrac <avrac@freebox.fr> | 2014-06-12 17:43:40 +0200 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2014-06-17 13:51:30 +0200 |
commit | 76c0007778d230d44307272a63ee033e5122e75f (patch) | |
tree | c8e00f12ee545ec5796dea0b2e4583030a549900 /pkgconfig | |
parent | e5334a1f8b2dd8e5b6a0b0db450292b700d70ede (diff) |
wayland: install .pc file
Diffstat (limited to 'pkgconfig')
-rw-r--r-- | pkgconfig/Makefile.am | 9 | ||||
-rw-r--r-- | pkgconfig/gstreamer-wayland-uninstalled.pc.in | 12 | ||||
-rw-r--r-- | pkgconfig/gstreamer-wayland.pc.in | 12 |
3 files changed, 30 insertions, 3 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index 3e53a6ee5..65fdc7bf0 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-wayland-@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-wayland-@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-wayland.pc.in gstreamer-wayland-uninstalled.pc.in DISTCLEANFILES = $(pcinfiles:.in=) EXTRA_DIST = $(pcinfiles) diff --git a/pkgconfig/gstreamer-wayland-uninstalled.pc.in b/pkgconfig/gstreamer-wayland-uninstalled.pc.in new file mode 100644 index 000000000..fe01de6e5 --- /dev/null +++ b/pkgconfig/gstreamer-wayland-uninstalled.pc.in @@ -0,0 +1,12 @@ +prefix= +exec_prefix= +libdir=${pcfiledir}/../gst-libs/gst/wayland +includedir=${pcfiledir}/../gst-libs + +Name: GStreamer Wayland, Uninstalled +Description: GStreamer Wayland support, uninstalled +Requires: gstreamer-@GST_API_VERSION@ gstreamer-video-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} ${libdir}/libgstwayland-@GST_API_VERSION@.la +Cflags: -I${includedir} + diff --git a/pkgconfig/gstreamer-wayland.pc.in b/pkgconfig/gstreamer-wayland.pc.in new file mode 100644 index 000000000..fa1e2ab40 --- /dev/null +++ b/pkgconfig/gstreamer-wayland.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/gstreamer-@GST_API_VERSION@ + +Name: GStreamer Wayland +Description: GStreamer Wayland support +Requires: gstreamer-@GST_API_VERSION@ gstreamer-video-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} -lgstwayland-@GST_API_VERSION@ +Cflags: -I${includedir} + |