2000-01-31 06:46:18 +00:00
|
|
|
%define name gstreamer
|
|
|
|
%define ver @VERSION@
|
|
|
|
%define rel SNAP
|
|
|
|
%define prefix /usr
|
|
|
|
|
2001-01-11 00:35:42 +00:00
|
|
|
Summary: GStreamer Streaming-media framework runtime
|
2000-01-31 06:46:18 +00:00
|
|
|
Name: %name
|
|
|
|
Version: %ver
|
|
|
|
Release: %rel
|
|
|
|
Copyright: LGPL
|
|
|
|
Group: Libraries
|
|
|
|
Source: %{name}-%{ver}.tar.gz
|
|
|
|
BuildRoot: /var/tmp/%{name}-%{ver}-root
|
|
|
|
Docdir: %{prefix}/doc
|
|
|
|
Prefix: %prefix
|
|
|
|
|
|
|
|
%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
|
2001-01-11 00:35:42 +00:00
|
|
|
else media-related. Its plugin-based architecture means that new data
|
|
|
|
types or processing capabilities can be added simply by installing new
|
|
|
|
plugins.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Libraries and include files for GStreamer streaming-media framework
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
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.
|
|
|
|
|
|
|
|
This package contains the libraries and includes files necessary to develop
|
|
|
|
applications and plugins for GStreamer.
|
2000-01-31 06:46:18 +00:00
|
|
|
|
|
|
|
%changelog
|
2001-01-11 00:35:42 +00:00
|
|
|
* Tue Jan 09 2001 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
- updated to build -devel package as well
|
|
|
|
|
2000-01-31 06:46:18 +00:00
|
|
|
* Sun Jan 30 2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
- first draft of spec file
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup
|
|
|
|
|
|
|
|
%build
|
|
|
|
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix
|
|
|
|
|
|
|
|
if [ "$SMP" != "" ]; then
|
|
|
|
(make "MAKE=make -k -j $SMP"; exit 0)
|
|
|
|
make
|
|
|
|
else
|
|
|
|
make
|
|
|
|
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
|
|
|
|
|
2001-01-11 00:35:42 +00:00
|
|
|
%post
|
|
|
|
/sbin/ldconfig
|
2000-01-31 06:46:18 +00:00
|
|
|
|
2001-01-11 00:35:42 +00:00
|
|
|
%postun
|
|
|
|
/sbin/ldconfig
|
2000-01-31 06:46:18 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%{prefix}/bin/*
|
2001-01-11 00:35:42 +00:00
|
|
|
%{prefix}/lib/lib*.so.*
|
|
|
|
%{prefix}/lib/gst/*
|
2001-01-02 20:50:54 +00:00
|
|
|
%{prefix}/share/*
|
2001-01-11 00:35:42 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{prefix}/include/*
|
|
|
|
%{prefix}/lib/lib*.a
|
|
|
|
%{prefix}/lib/lib*.so
|