the devel package requires liborc-devel [release 1.0.11-2mamba;Wed Jun 26 2013]
This commit is contained in:
parent
e0b6e7832d
commit
d530867ad8
11
README.md
11
README.md
@ -1,2 +1,13 @@
|
||||
# libschroedinger
|
||||
|
||||
Library for decoding and encoding video in the Dirac format.
|
||||
It is implemented in ANSI C and optimized through the us of liboil.
|
||||
libschro is written as a collaboration between the BBC Research and Development, David Schleef and Fluendo.
|
||||
|
||||
Applications that can use libschroedinger:
|
||||
* transcode
|
||||
* mplayer
|
||||
* FFMpeg
|
||||
To solve problems compilation see here:
|
||||
http://diracvideo.org/download/dirac-research/ffmpeg-patches/
|
||||
|
||||
|
140
libschroedinger.spec
Normal file
140
libschroedinger.spec
Normal file
@ -0,0 +1,140 @@
|
||||
Name: libschroedinger
|
||||
Version: 1.0.11
|
||||
Release: 2mamba
|
||||
Summary: Library for decoding and encoding video in the Dirac format
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Automatic Build System <autodist@mambasoft.it>
|
||||
URL: http://www.diracvideo.org/
|
||||
Source: http://diracvideo.org/download/schroedinger/schroedinger-%{version}.tar.gz
|
||||
License: LGPL,MIT,MPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libglib-devel
|
||||
BuildRequires: libgst-plugins-base-devel
|
||||
BuildRequires: libgstreamer-devel
|
||||
BuildRequires: liboil-devel
|
||||
BuildRequires: libxml2-devel
|
||||
## AUTOBUILDREQ-END
|
||||
Provides: %{name}-gstreamer
|
||||
Obsoletes: %{name}-gstreamer
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
Library for decoding and encoding video in the Dirac format.
|
||||
It is implemented in ANSI C and optimized through the us of liboil.
|
||||
libschro is written as a collaboration between the BBC Research and Development, David Schleef and Fluendo.
|
||||
|
||||
Applications that can use %{name}:
|
||||
* transcode
|
||||
* mplayer
|
||||
* FFMpeg
|
||||
To solve problems compilation see here:
|
||||
http://diracvideo.org/download/dirac-research/ffmpeg-patches/
|
||||
|
||||
%package devel
|
||||
Group: Development/Libraries
|
||||
Summary: Static libraries and headers for %{name}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Requires: liborc-devel
|
||||
|
||||
%description devel
|
||||
Library for decoding and encoding video in the Dirac format.
|
||||
It is implemented in ANSI C and optimized through the us of liboil.
|
||||
libschro is written as a collaboration between the BBC Research and Development, David Schleef and Fluendo.
|
||||
|
||||
This package contains static libraries and header files need for development.
|
||||
|
||||
#%package gstreamer
|
||||
#Group: Development/Libraries
|
||||
#Summary: Static libraries and headers for %{name}
|
||||
#Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
#
|
||||
#%description gstreamer
|
||||
#Library for decoding and encoding video in the Dirac format. It is implemented
|
||||
#in ANSI C and optimized through the us of liboil. libschro is written as a
|
||||
#collaboration between the BBC Research and Development, David Schleef and
|
||||
#Fluendo.
|
||||
#
|
||||
#This package contains gstreamer static libraries files need for development.
|
||||
|
||||
%package docs
|
||||
Summary: %{name} documentation
|
||||
Group: Documentation
|
||||
|
||||
%description docs
|
||||
%{name} documentation.
|
||||
|
||||
%prep
|
||||
%setup -q -n schroedinger-%{version}
|
||||
|
||||
%build
|
||||
%configure
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.so.*
|
||||
%doc AUTHORS COPYING
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/schroedinger-1.0/schroedinger
|
||||
%{_includedir}/schroedinger-1.0/schroedinger/*.h
|
||||
%{_libdir}/*.a
|
||||
%{_libdir}/*.la
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/schroedinger-1.0.pc
|
||||
%doc NEWS TODO
|
||||
|
||||
#%files gstreamer
|
||||
#%defattr(-,root,root)
|
||||
##%{_libdir}/gstreamer-0.10/libgstschro.a
|
||||
##%{_libdir}/gstreamer-0.10/libgstschro.la
|
||||
##%{_libdir}/gstreamer-0.10/libgstschro.so
|
||||
|
||||
%files docs
|
||||
%defattr(-,root,root)
|
||||
%dir %{_datadir}/gtk-doc/html/schroedinger
|
||||
%{_datadir}/gtk-doc/html/schroedinger/*.html
|
||||
%{_datadir}/gtk-doc/html/schroedinger/*.sgml
|
||||
%{_datadir}/gtk-doc/html/schroedinger/*.png
|
||||
#%{_datadir}/gtk-doc/html/schroedinger/schroedinger.devhelp
|
||||
%{_datadir}/gtk-doc/html/schroedinger/schroedinger.devhelp2
|
||||
%{_datadir}/gtk-doc/html/schroedinger/style.css
|
||||
|
||||
%changelog
|
||||
* Wed Jun 26 2013 openmamba WebBuild System <webbuild@openmamba.org> 1.0.11-2mamba
|
||||
- the devel package requires liborc-devel
|
||||
|
||||
* Sat Aug 11 2012 Automatic Build System <autodist@mambasoft.it> 1.0.11-1mamba
|
||||
- automatic version update by autodist
|
||||
|
||||
* Fri Mar 11 2011 Automatic Build System <autodist@mambasoft.it> 1.0.10-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Tue Jul 27 2010 Automatic Build System <autodist@mambasoft.it> 1.0.9-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Tue Oct 13 2009 Automatic Build System <autodist@mambasoft.it> 1.0.8-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Sat May 16 2009 Automatic Build System <autodist@mambasoft.it> 1.0.7-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Wed Apr 08 2009 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.6-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Wed Aug 20 2008 gil <puntogil@libero.it> 1.0.5-1mamba
|
||||
- added packagea: docs, gstreamer
|
Loading…
Reference in New Issue
Block a user