6 Summary: Streaming-media framework
12 Source: %{name}-%{ver}.tar.gz
13 BuildRoot: /var/tmp/%{name}-%{ver}-root
18 GStreamer is a streaming-media framework, based on graphs of filters which
19 operate on media data. Applications using this library can do anything
20 from real-time sound processing to playing videos, and just about anything
21 else media-related. It's plugin-based architecture means that new data
22 types or processing capabilities can be added simply by installing a new
26 * Sun Jan 30 2000 Erik Walthinsen <omega@cse.ogi.edu>
27 - first draft of spec file
33 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
35 if [ "$SMP" != "" ]; then
36 (make "MAKE=make -k -j $SMP"; exit 0)
43 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
45 make prefix=$RPM_BUILD_ROOT%{prefix} install
48 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
50 %post -p /sbin/ldconfig
52 %postun -p /sbin/ldconfig
55 %defattr(-, root, root)