summaryrefslogtreecommitdiffstats
path: root/gst-plugins.spec.in
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2001-12-21 14:53:33 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2001-12-21 14:53:33 +0000
commit70768ec8a72458bd8341cdab5e03148e833908d5 (patch)
tree77aa63b2542520989a088edd535d328864e5c739 /gst-plugins.spec.in
parent7a0bc749e493c3414a7a69b3c03ba38d886a3cde (diff)
adding a conditional'd spec file with esd as an example comments on how to take this idea further are welcomed before...
Original commit message from CVS: adding a conditional'd spec file with esd as an example comments on how to take this idea further are welcomed before I move on ;)
Diffstat (limited to 'gst-plugins.spec.in')
-rw-r--r--gst-plugins.spec.in72
1 files changed, 72 insertions, 0 deletions
diff --git a/gst-plugins.spec.in b/gst-plugins.spec.in
new file mode 100644
index 00000000..dcbe9315
--- /dev/null
+++ b/gst-plugins.spec.in
@@ -0,0 +1,72 @@
+%define name gst-plugins
+%define ver 0.3.02
+%define rel 20011221
+%define prefix /usr
+%define sysconfdir /etc
+
+Summary: GStreamer Streaming-media framework plugins
+Name: %name
+Version: %ver
+Release: %rel
+Copyright: LGPL
+Group: Libraries/Multimedia
+Source: %{name}-%{ver}.tar.gz
+BuildRoot: /var/tmp/%{name}-%{ver}-root
+Docdir: %{prefix}/doc
+Prefix: %prefix
+Requires: libxml >= 1.8.0
+BuildRequires: nasm => 0.90
+
+%description
+GStreamer is a streaming-media framework, based on graphs of filters which
+operate on media data. Applications using this library can do anything
+from real-time sound processing to playing videos, and just about anything
+else media-related. Its plugin-based architecture means that new data
+types or processing capabilities can be added simply by installing new
+plugins.
+
+%files
+%defattr(-, root, root)
+%doc AUTHORS COPYING README
+
+%prep
+%setup
+%build
+CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --sysconfdir=%{sysconfdir} --mandir=$RPM_BUILD_ROOT%{prefix}/share/man --enable-glib2
+
+if [ "$SMP" != "" ]; then
+ (make "MAKE=make -k -j $SMP"; exit 0)
+ make 2>&1 | tee make.log
+else
+ make 2>&1 | tee make.log
+fi
+
+%install
+[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
+
+make prefix=$RPM_BUILD_ROOT%{prefix} install
+
+%clean
+[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
+
+### ESD ###
+@USE_ESD_TRUE@%package -n gstreamer-esd
+@USE_ESD_TRUE@Summary: Gstreamer plugin for ESD sound output
+@USE_ESD_TRUE@Group: Libraries/Multimedia
+@USE_ESD_TRUE@Requires: esound >= 0.2.8
+@USE_ESD_TRUE@Requires: %{name} = %{ver}
+@USE_ESD_TRUE@
+@USE_ESD_TRUE@%description -n gstreamer-esd
+@USE_ESD_TRUE@Output plugin for GStreamer for use with the esound package
+@USE_ESD_TRUE@
+@USE_ESD_TRUE@%files -n gstreamer-esd
+@USE_ESD_TRUE@%defattr(-, root, root)
+@USE_ESD_TRUE@%{prefix}/lib/gst/libesd*
+
+%post -n gstreamer-esd
+%{prefix}/bin/gstreamer-register --gst-mask=0
+
+%postun -n gstreamer-esd
+%{prefix}/bin/gstreamer-register --gst-mask=0
+/sbin/ldconfig
+