From 32acd59e03558a5f48a64d662309b43c4b0d21db Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: Mar 18 2013 15:17:05 +0000 Subject: import webrtc-audio-processing-0.1-3.el7.src.rpm --- diff --git a/.webrtc-audio-processing.metadata b/.webrtc-audio-processing.metadata new file mode 100644 index 0000000..49037d6 --- /dev/null +++ b/.webrtc-audio-processing.metadata @@ -0,0 +1 @@ +cce81e0d7b69fef1e7ce0e3e85a2b740d3f04620 SOURCES/webrtc-audio-processing-0.1.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/webrtc-audio-processing.spec b/SPECS/webrtc-audio-processing.spec new file mode 100644 index 0000000..5cf35bd --- /dev/null +++ b/SPECS/webrtc-audio-processing.spec @@ -0,0 +1,68 @@ + +Name: webrtc-audio-processing +Version: 0.1 +Release: 3%{?dist} +Summary: Library for echo cancellation + +License: BSD +URL: http://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing/ +Source0: http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/%{name}-%{version}.tar.xz + +ExclusiveArch: %{ix86} x86_64 %{arm} + +%description +%{name} is a library derived from Google WebRTC project that +provides echo cancellation functionality. This library is used by for example +PulseAudio to provide echo cancellation. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header +files for developing applications that use %{name}. + +%prep +%setup -q + +%build +%configure \ + --with-package-name='Fedora Webrtc-audio-processing package' \ + --with-package-origin='http://download.fedoraproject.org' \ + --disable-static +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + + +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + +%files +%doc COPYING NEWS AUTHORS PATENTS +%{_libdir}/*.so.* + +%files devel +%{_libdir}/libwebrtc_audio_processing.so +%{_libdir}/pkgconfig/%{name}.pc +%{_includedir}/webrtc_audio_processing/ + + +%changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Tue Oct 9 2012 Dan HorĂ¡k 0.1-2 +- set ExclusiveArch x86 and ARM for now + +* Fri Oct 5 2012 Christian Schaller 0.1-1 +- Initial Fedora spec.