mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ok, redo from start
Original commit message from CVS: ok, redo from start
This commit is contained in:
parent
37d7c43077
commit
45dde001e4
4 changed files with 32 additions and 4 deletions
|
@ -11,7 +11,7 @@ EXT_DIR=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
pkgconfigdir = $(libdir)/pkgconfig
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
pkgconfig_DATA = gstreamer-libs.pc
|
pkgconfig_DATA = gstreamer-libs.pc gstreamer-play.pc
|
||||||
|
|
||||||
aclocaldir = $(datadir)/aclocal
|
aclocaldir = $(datadir)/aclocal
|
||||||
aclocal_DATA = gst-element-check.m4
|
aclocal_DATA = gst-element-check.m4
|
||||||
|
@ -22,6 +22,7 @@ DIST_SUBDIRS=gst-libs gst sys ext examples tools gconf testsuite
|
||||||
|
|
||||||
EXTRA_DIST=gst-plugins.spec depcomp gst-element-check.m4 \
|
EXTRA_DIST=gst-plugins.spec depcomp gst-element-check.m4 \
|
||||||
gstreamer-libs.pc.in gstreamer-libs-uninstalled.pc.in \
|
gstreamer-libs.pc.in gstreamer-libs-uninstalled.pc.in \
|
||||||
|
gstreamer-play.pc.in gstreamer-play-uninstalled.pc.in \
|
||||||
AUTHORS COPYING README RELEASE \
|
AUTHORS COPYING README RELEASE \
|
||||||
ChangeLog autogen.sh common m4
|
ChangeLog autogen.sh common m4
|
||||||
|
|
||||||
|
|
|
@ -1471,9 +1471,11 @@ This package contains a basic audio and video playback library.
|
||||||
%{_sysconfdir}/gconf/schemas/gstreamer.schemas
|
%{_sysconfdir}/gconf/schemas/gstreamer.schemas
|
||||||
%{_libdir}/libgstplay-%{version}.so.*
|
%{_libdir}/libgstplay-%{version}.so.*
|
||||||
|
|
||||||
%post -n gstreamer-GConf
|
%post -n gstreamer-play
|
||||||
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
/sbin/ldconfig
|
||||||
gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gstreamer.schemas > /dev/null
|
|
||||||
|
%postun -n gstreamer-play
|
||||||
|
/sbin/ldconfig
|
||||||
|
|
||||||
#
|
#
|
||||||
%changelog
|
%changelog
|
||||||
|
|
13
gstreamer-play-uninstalled.pc.in
Normal file
13
gstreamer-play-uninstalled.pc.in
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# the standard variables don't make sense for an uninstalled copy
|
||||||
|
prefix=
|
||||||
|
exec_prefix=
|
||||||
|
libdir=${pcfiledir}
|
||||||
|
includedir=${pcfiledir}
|
||||||
|
|
||||||
|
Name: GStreamer Play Library, uninstalled
|
||||||
|
Description: Streaming-media framework, play libraries, not installed
|
||||||
|
Requires: gstreamer >= @GSTREAMER_REQ@
|
||||||
|
Version: @VERSION@
|
||||||
|
|
||||||
|
Libs: ${pcfiledir}/libs/gst/play/libgstplay.la -lgstcontrol
|
||||||
|
Cflags: -I${pcfiledir}/libs
|
12
gstreamer-play.pc.in
Normal file
12
gstreamer-play.pc.in
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
prefix=@prefix@
|
||||||
|
exec_prefix=@exec_prefix@
|
||||||
|
libdir=@libdir@
|
||||||
|
includedir=@includedir@/@PACKAGE@-@VERSION@
|
||||||
|
|
||||||
|
Name: GStreamer Play Library
|
||||||
|
Description: Streaming-media framework, play libraries
|
||||||
|
Requires: gstreamer >= @GSTREAMER_REQ@
|
||||||
|
Version: @VERSION@
|
||||||
|
|
||||||
|
Libs: -L${libdir} -lgstplay -lgstcontrol
|
||||||
|
Cflags: -I${includedir}
|
Loading…
Reference in a new issue