]> git.pld-linux.org Git - packages/webrtc-audio-processing.git/blame - webrtc-audio-processing.spec
- added -static
[packages/webrtc-audio-processing.git] / webrtc-audio-processing.spec
CommitLineData
ac8de864
ER
1# NOTE:
2# f.d.o source is meant to be a more Linux packaging friendly copy of the
3# AudioProcessing module from the WebRTC[1] project. The ideal case is that we
4# make no changes to the code to make tracking upstream code easy.
5# [1] http://code.google.com/p/webrtc/
6Summary: WebRTC Audio Processing library
1a9d4a78 7Summary(pl.UTF-8): Biblioteka WebRTC Audio Processing
ac8de864
ER
8Name: webrtc-audio-processing
9Version: 0.1
10Release: 1
11License: BSD
12Group: Libraries
ac8de864
ER
13Source0: http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/%{name}-%{version}.tar.xz
14# Source0-md5: da25bb27812c8404060d4cc0dc712f04
15Patch0: link.patch
1a9d4a78
JB
16URL: http://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing/
17BuildRequires: autoconf >= 2.50
ac8de864
ER
18BuildRequires: automake
19BuildRequires: libstdc++-devel
20BuildRequires: libtool
1a9d4a78 21BuildRequires: tar >= 1:1.22
ac8de864
ER
22BuildRequires: xz
23BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25%description
26WebRTC is an open source project that enables web browsers with
27Real-Time Communications (RTC) capabilities via simple Javascript
28APIs. The WebRTC components have been optimized to best serve this
29purpose. WebRTC implements the W3C's proposal for video conferencing
30on the web.
31
1a9d4a78
JB
32%description -l pl.UTF-8
33WebRTC to projekt o otwartych źródłach dodający obsługę komunikacji
34w czasie rzeczywistym (RTC - Real-Time Communications) poprzez proste
35API JavaScriptu. Komponenty WebRTC zostały zoptymalizowane, aby jak
36najlepiej sprawdzały się w tym zastosowaniu. WebRTC implementuje
37propozycje W3C do wideokonferencji w sieci.
38
ac8de864 39%package devel
1a9d4a78
JB
40Summary: Header files for WebRTC Audio Processing library
41Summary(pl.UTF-8): Pliki nagłówkowe biblioteki WebRTC Audio Processing
ac8de864
ER
42Group: Development/Libraries
43Requires: %{name} = %{version}-%{release}
1a9d4a78 44Requires: libstdc++-devel
ac8de864
ER
45
46%description devel
1a9d4a78
JB
47This package contains the header files needed to develop programs
48which make use of WebRTC Audio Processing library.
49
50%description devel -l pl.UTF-8
51Ten pakiet zawiera pliki nagłówkowe potrzebne do tworzenia programów
52wykorzystujących bibliotekę WebRTC Audio Processing.
53
54%package static
55Summary: Static WebRTC Audio Processing library
56Summary(pl.UTF-8): Biblioteka statyczna WebRTC Audio Processing
57Group: Development/Libraries
58Requires: %{name}-devel = %{version}-%{release}
59
60%description static
61Static WebRTC Audio Processing library.
62
63%description static -l pl.UTF-8
64Biblioteka statyczna WebRTC Audio Processing.
ac8de864
ER
65
66%prep
67%setup -q
68%patch0 -p1
69
70%build
71%{__libtoolize}
72%{__aclocal}
73%{__autoconf}
74%{__automake}
75%configure \
1a9d4a78 76 --disable-silent-rules
ac8de864
ER
77%{__make}
78
79%install
80rm -rf $RPM_BUILD_ROOT
81%{__make} install \
82 DESTDIR=$RPM_BUILD_ROOT
83
1a9d4a78 84# obsoleted by pkg-config
ac8de864
ER
85%{__rm} $RPM_BUILD_ROOT%{_libdir}/*.la
86
87%clean
88rm -rf $RPM_BUILD_ROOT
89
90%post -p /sbin/ldconfig
91%postun -p /sbin/ldconfig
92
93%files
94%defattr(644,root,root,755)
95%doc AUTHORS COPYING NEWS PATENTS README
96%attr(755,root,root) %{_libdir}/libwebrtc_audio_processing.so.*.*.*
1a9d4a78 97%attr(755,root,root) %ghost %{_libdir}/libwebrtc_audio_processing.so.0
ac8de864
ER
98
99%files devel
100%defattr(644,root,root,755)
1a9d4a78 101%attr(755,root,root) %{_libdir}/libwebrtc_audio_processing.so
ac8de864 102%{_includedir}/webrtc_audio_processing
ac8de864 103%{_pkgconfigdir}/webrtc-audio-processing.pc
1a9d4a78
JB
104
105%files static
106%defattr(644,root,root,755)
107%{_libdir}/libwebrtc_audio_processing.a
This page took 0.071295 seconds and 4 git commands to generate.