package created by autospec [release 1.2.0-1mamba;Sat Dec 11 2010]

This commit is contained in:
Silvan Calarco 2024-01-06 06:05:21 +01:00
parent fefb91fef2
commit 037bf97966
2 changed files with 68 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libvorbisidec
A fixed-point version of the Ogg Vorbis decoder for platforms that can' do floating point math.

66
libvorbisidec.spec Normal file
View File

@ -0,0 +1,66 @@
Name: libvorbisidec
Version: 1.2.0
Release: 1mamba
Summary: A fixed-point version of the Ogg Vorbis decoder for platforms that can' do floating point math
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://wiki.xiph.org/Tremor
# Source package got with:
# svn co http://svn.xiph.org/trunk/Tremor/
Source: http://svn.xiph.org/trunk/Tremor//libvorbisidec-%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libogg-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A fixed-point version of the Ogg Vorbis decoder for platforms that can' do floating point math.
%package devel
Group: Development/Libraries
Summary: Static libraries and headers for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
A fixed-point version of the Ogg Vorbis decoder for platforms that can' do floating point math.
This package contains static libraries and header files need for development.
%prep
%setup -q
%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 COPYING
%files devel
%defattr(-,root,root)
%{_prefix}/include/tremor/*.h
%{_libdir}/*.a
%{_libdir}/*.la
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%doc README
%changelog
* Sat Dec 11 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.0-1mamba
- package created by autospec