From ca6ca0ed1607c44985b1418ff9fdb05b2360e2da Mon Sep 17 00:00:00 2001 From: Prabin Kumar Datta Date: Tue, 7 Jun 2011 21:50:16 +0000 Subject: [PATCH] *** empty log message *** --- .gitignore | 1 + sources | 1 + vo-amrwbenc.spec | 59 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 vo-amrwbenc.spec diff --git a/.gitignore b/.gitignore index e69de29..59d5bdf 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +vo-amrwbenc-0.1.1.tar.gz diff --git a/sources b/sources index e69de29..acffabd 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +ce55df38265c4e3140e42b74dd91e44c vo-amrwbenc-0.1.1.tar.gz diff --git a/vo-amrwbenc.spec b/vo-amrwbenc.spec new file mode 100644 index 0000000..aa2f490 --- /dev/null +++ b/vo-amrwbenc.spec @@ -0,0 +1,59 @@ +Name: vo-amrwbenc +Version: 0.1.1 +Release: 1%{?dist} +Summary: VisualOn AMR-WB encoder library +Group: System Environment/Libraries +License: ASL 2.0 +URL: http://opencore-amr.sourceforge.net/ +Source0: http://sourceforge.net/projects/opencore-amr/files/%{name}/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +This library contains an encoder implementation of the Adaptive +Multi Rate Wideband (AMR-WB) audio codec. The library is based +on a codec implementation by VisualOn as part of the Stagefright +framework from the Google Android project. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%prep +%setup -q + +%build +%configure +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make install DESTDIR=$RPM_BUILD_ROOT +rm $RPM_BUILD_ROOT%{_libdir}/libvo-amrwbenc.la + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc COPYING README NOTICE +%{_libdir}/libvo-amrwbenc.so.* + +%files devel +%defattr(-,root,root,-) +%{_includedir}/%{name} +%{_libdir}/libvo-amrwbenc.a +%{_libdir}/libvo-amrwbenc.so +%{_libdir}/pkgconfig/vo-amrwbenc.pc + +%changelog +* Wed May 04 2011 Prabin Kumar Datta - 0.1.1-1 +- upgraded to new version 0.1.1 + +* Wed May 04 2011 Prabin Kumar Datta - 0.1.0-1 +- Initial build