From fc8782d9d07435c03682c36ee2146b141d05961b Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Tue, 23 Jun 2020 19:31:42 +0530 Subject: [PATCH] meson: Add missing pc file for gstphotography This is supposed to be used by apps like Cheese, and is a public library. Part-of: --- pkgconfig/gstreamer-photography-uninstalled.pc.in | 12 ++++++++++++ pkgconfig/gstreamer-photography.pc.in | 12 ++++++++++++ pkgconfig/meson.build | 1 + 3 files changed, 25 insertions(+) create mode 100644 pkgconfig/gstreamer-photography-uninstalled.pc.in create mode 100644 pkgconfig/gstreamer-photography.pc.in diff --git a/pkgconfig/gstreamer-photography-uninstalled.pc.in b/pkgconfig/gstreamer-photography-uninstalled.pc.in new file mode 100644 index 0000000000..51baf42660 --- /dev/null +++ b/pkgconfig/gstreamer-photography-uninstalled.pc.in @@ -0,0 +1,12 @@ +prefix= +exec_prefix= +libdir=@playerlibdir@ +includedir=@abs_top_srcdir@/gst-libs + +Name: GStreamer Photography, Uninstalled +Description: GStreamer Photography digital image capture library, uninstalled +Requires: gstreamer-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} -lgstphotography-@GST_API_VERSION@ +Cflags: -I@abs_top_srcdir@/gst-libs -I@abs_top_builddir@/gst-libs + diff --git a/pkgconfig/gstreamer-photography.pc.in b/pkgconfig/gstreamer-photography.pc.in new file mode 100644 index 0000000000..99784d07c2 --- /dev/null +++ b/pkgconfig/gstreamer-photography.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/gstreamer-@GST_API_VERSION@ + +Name: GStreamer Photography +Description: GStreamer Photography digital image capture library +Requires: gstreamer-@GST_API_VERSION@ +Version: @VERSION@ +Libs: -L${libdir} -lgstphotography-@GST_API_VERSION@ +Cflags: -I${includedir} + diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build index c9d6d195ce..9b2d5531eb 100644 --- a/pkgconfig/meson.build +++ b/pkgconfig/meson.build @@ -28,6 +28,7 @@ pkg_libs = [ 'codecparsers', 'insertbin', 'mpegts', + 'photography', 'player', 'plugins-bad', 'sctp',