diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2009-01-06 12:16:18 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2009-01-06 12:16:18 +0000 |
commit | 616ffbddd33ae2177132ddf818bf254f319f33e6 (patch) | |
tree | 65e3b58d457e505f322b872159f3416bcdfb36f4 /pkgconfig | |
parent | ada70bb15981023b3336e5559ee5f1ba3fccdbcd (diff) |
Add pkg-config files for libgstapp. Fixes bug #566761.
Original commit message from CVS:
* configure.ac:
* pkgconfig/Makefile.am:
* pkgconfig/gstreamer-app-uninstalled.pc.in:
* pkgconfig/gstreamer-app.pc.in:
Add pkg-config files for libgstapp. Fixes bug #566761.
Diffstat (limited to 'pkgconfig')
-rw-r--r-- | pkgconfig/Makefile.am | 3 | ||||
-rw-r--r-- | pkgconfig/gstreamer-app-uninstalled.pc.in | 13 | ||||
-rw-r--r-- | pkgconfig/gstreamer-app.pc.in | 12 |
3 files changed, 28 insertions, 0 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index c035577de..f0bdfd013 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -1,6 +1,7 @@ ### all of the standard pc files we need to generate pcverfiles = \ gstreamer-audio-@GST_MAJORMINOR@.pc \ + gstreamer-app-@GST_MAJORMINOR@.pc \ gstreamer-cdda-@GST_MAJORMINOR@.pc \ gstreamer-fft-@GST_MAJORMINOR@.pc \ gstreamer-floatcast-@GST_MAJORMINOR@.pc \ @@ -16,6 +17,7 @@ pcverfiles = \ gstreamer-plugins-base-@GST_MAJORMINOR@.pc pcverfiles_uninstalled = \ gstreamer-audio-@GST_MAJORMINOR@-uninstalled.pc \ + gstreamer-app-@GST_MAJORMINOR@-uninstalled.pc \ gstreamer-cdda-@GST_MAJORMINOR@-uninstalled.pc \ gstreamer-fft-@GST_MAJORMINOR@-uninstalled.pc \ gstreamer-floatcast-@GST_MAJORMINOR@-uninstalled.pc \ @@ -44,6 +46,7 @@ pkgconfig_DATA = $(pcverfiles) CLEANFILES = $(pcverfiles) $(pcverfiles_uninstalled) pcinfiles = \ gstreamer-audio.pc.in gstreamer-audio-uninstalled.pc.in \ + gstreamer-app.pc.in gstreamer-app-uninstalled.pc.in \ gstreamer-cdda.pc.in gstreamer-cdda-uninstalled.pc.in \ gstreamer-fft.pc.in gstreamer-fft-uninstalled.pc.in \ gstreamer-floatcast.pc.in gstreamer-floatcast-uninstalled.pc.in \ diff --git a/pkgconfig/gstreamer-app-uninstalled.pc.in b/pkgconfig/gstreamer-app-uninstalled.pc.in new file mode 100644 index 000000000..0b6c5a480 --- /dev/null +++ b/pkgconfig/gstreamer-app-uninstalled.pc.in @@ -0,0 +1,13 @@ +prefix= +exec_prefix= +libdir=${pcfiledir}/../gst-libs/gst/tag +includedir=${pcfiledir}/../gst-libs + +Name: GStreamer Application Library, Uninstalled +Description: Helper functions and base classes for application integration, uninstalled +Version: @VERSION@ +Requires: gstreamer-@GST_MAJORMINOR@ gstreamer-base-@GST_MAJORMINOR@ + +Libs: -L${libdir} ${libdir}/libgstapp-@GST_MAJORMINOR@.la +Cflags: -I${includedir} + diff --git a/pkgconfig/gstreamer-app.pc.in b/pkgconfig/gstreamer-app.pc.in new file mode 100644 index 000000000..ef3d27c38 --- /dev/null +++ b/pkgconfig/gstreamer-app.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/gstreamer-@GST_MAJORMINOR@ + +Name: GStreamer Application Library +Description: Helper functions and base classes for application integration +Requires: gstreamer-@GST_MAJORMINOR@ gstreamer-base-@GST_MAJORMINOR@ +Version: @VERSION@ +Libs: -L${libdir} -lgstapp-@GST_MAJORMINOR@ +Cflags: -I${includedir} + |