initial import

This commit is contained in:
Peter Robinson 2011-10-17 14:32:59 +01:00
parent 659f912a2b
commit e0e828a5f5
4 changed files with 15238 additions and 0 deletions

1
.gitignore vendored
View File

@ -0,0 +1 @@
/opus-0.9.6.tar.gz

15176
draft-ietf-codec-opus-08.txt Normal file

File diff suppressed because it is too large Load Diff

60
opus.spec Normal file
View File

@ -0,0 +1,60 @@
Name: opus
Version: 0.9.6
Release: 1%{?dist}
Summary: An audio codec for use in low-delay speech and audio communication
Group: System Environment/Libraries
License: BSD
URL: http://www.opus-codec.org/
Source0: http://downloads.xiph.org/releases/%{name}/%{name}-%{version}.tar.gz
# This is the current IETF Working Group draft
Source1: http://tools.ietf.org/id/draft-ietf-codec-opus-08.txt
#Source1: draft-ietf-codec-opus-08.txt
%description
The Opus codec is designed for interactive speech and audio transmission over
the Internet. It is designed by the IETF Codec Working Group and incorporates
technology from Skype's SILK codec and Xiph.Org's CELT codec.
%package devel
Summary: Development package for opus
Group: Development/Libraries
Requires: libogg-devel
Requires: opus = %{version}-%{release}
%description devel
Files for development with opus.
%prep
%setup -q
cp %{SOURCE1} .
%build
%configure
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
# Remove libtool archives and static libs
find %{buildroot} -name '*.la' -exec rm -f {} ';'
find %{buildroot} -name '*.a' -exec rm -f {} ';'
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc COPYING README TODO draft-ietf-codec-opus-08.txt
%{_libdir}/libopus.so.*
%files devel
%defattr(-,root,root,-)
%{_includedir}/opus
%{_libdir}/libopus.so
%changelog
* Mon Oct 10 2011 Peter Robinson <pbrobinson@fedoraproject.org> 0.9.6-1
- Initial packaging

View File

@ -0,0 +1 @@
030556bcaebb241505f8577e92abe6d4 opus-0.9.6.tar.gz