diff --git a/README.md b/README.md index 65376d3..2a9f1b0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # liboggz +liboggz provides a simple programming interface for reading and writing Ogg files +and streams. Ogg is an interleaving data container developed by Monty at +Xiph.Org, originally to support the Ogg Vorbis audio format. + diff --git a/liboggz.spec b/liboggz.spec new file mode 100644 index 0000000..7c380cf --- /dev/null +++ b/liboggz.spec @@ -0,0 +1,146 @@ +Name: liboggz +Version: 1.1.1 +Release: 2mamba +Summary: Simple programming interface for Ogg files and streams +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.xiph.org/oggz/ +Source: http://downloads.xiph.org/releases/liboggz/liboggz-%{version}.tar.gz +License: BSD +Requires: libogg +Requires: doxygen +## AUTOBUILDREQ-BEGIN +BuildRequires: doxygen +BuildRequires: glibc-devel +BuildRequires: libogg-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root +# ------------------------------------------------------------------------ +# liboggz 1.1.1: Automatic configuration OK. + +# General configuration: + +# Experimental code: ........... no +# Reading support: ............. yes +# Writing support: ............. yes + +# Tools: + +# oggz-dump oggz-info oggz-scan oggz-codecs +# oggz-rip oggz-merge oggz-chop oggz-comment oggz-sort oggz-validate + +# Example programs will be built but not installed. +# ------------------------------------------------------------------------ + +%description +%{name} provides a simple programming interface for reading and writing Ogg files +and streams. Ogg is an interleaving data container developed by Monty at +Xiph.Org, originally to support the Ogg Vorbis audio format. + +%package devel +Group: Development/Libraries +Summary: Libraries and headers for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +%{name} provides a simple programming interface for reading and writing Ogg files +and streams. Ogg is an interleaving data container developed by Monty at +Xiph.Org, originally to support the Ogg Vorbis audio format. + +This package contains libraries and header files need for development. + +%package static +Group: Development/Libraries +Summary: Static libraries for %{name} +Requires: %{name}-devel = %{?epoch:%epoch:}%{version}-%{release} + +%description static +%{name} provides a simple programming interface for reading and writing Ogg files +and streams. Ogg is an interleaving data container developed by Monty at +Xiph.Org, originally to support the Ogg Vorbis audio format. + +This package contains static libraries need for development. + +%package tools +Summary: Various tools using the %{name} library +Group: Development/Tools +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description tools +%{name} provides a simple programming interface for reading and writing Ogg files +and streams. Ogg is an interleaving data container developed by Monty at +Xiph.Org, originally to support the Ogg Vorbis audio format. + +This package contains various tools using the liboggz library. + +%package doc +Group: Documentation +Summary: Documentation for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description doc +%{name} provides a simple programming interface for reading and writing Ogg files +and streams. Ogg is an interleaving data container developed by Monty at +Xiph.Org, originally to support the Ogg Vorbis audio format. + +This package contains HTML documentation need for development. + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_libdir}/liboggz.so.* +%doc AUTHORS COPYING + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/oggz +%{_includedir}/oggz/oggz*.h +%{_libdir}/liboggz.so +%{_libdir}/pkgconfig/oggz.pc +%doc ChangeLog README + +%files static +%defattr(-,root,root) +%{_libdir}/liboggz.*a + +%files tools +%defattr(-,root,root) +%{_bindir}/oggz* +%{_mandir}/man1/oggz*.1.gz + +%files doc +%defattr(-,root,root) +%doc %{_docdir}/liboggz/html +%doc %{_docdir}/liboggz/latex + +%changelog +* Mon Dec 27 2010 Silvan Calarco 1.1.1-2mamba +- automatic port from devel-gil + +* Mon Dec 20 2010 gil 1.1.1-1mamba +- update to 1.1.1 + +* Fri Apr 02 2010 gil 1.1.0-1mamba +- update to 1.1.0 + +* Mon May 25 2009 gil 0.9.9-1mamba +- update to 0.9.9 + +* Wed Aug 27 2008 gil 0.9.8-1mamba +- package created by autospec \ No newline at end of file