]> git.pld-linux.org Git - packages/ccrtp.git/blob - ccrtp.spec
- rel 2; rebuild
[packages/ccrtp.git] / ccrtp.spec
1 Summary:        Common C++ class framework for RTP/RTCP
2 Summary(pl):    Szkielet klas C++ dla RTP/RTCP
3 Name:           ccrtp
4 Version:        1.3.7
5 Release:        2
6 License:        GPL
7 Group:          Libraries
8 Source0:        ftp://ftp.gnu.org/pub/gnu/ccrtp/%{name}-%{version}.tar.gz
9 # Source0-md5:  6621be1852bd90c3dbbafa895618d8f0
10 URL:            http://www.gnu.org/software/ccrtp/
11 BuildRequires:  commoncpp2-devel
12 BuildRequires:  doxygen
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 ccRTP is a generic, extensible and efficient C++ framework for
17 developing applications based on the Real-Time Transport Protocol
18 (RTP) from the IETF. It is based on Common C++ and provides a full
19 RTP/RTCP stack for sending and receiving of realtime data by the use
20 of send and receive packet queues. ccRTP supports unicast,
21 multi-unicast and multicast, manages multiple sources, handles RTCP
22 automatically, supports different threading models and is generic as
23 for underlying network and transport protocols.
24
25 %description -l pl
26 ccRTP jest ogólnym, rozszerzalnym i efektywnym szkieletem C++ do
27 rozwijania aplikacji bazuj±cych na transporcie czasu rzeczywistego
28 (RTP) z IETF. Bazuje na Common C++ i udostêpnia pe³en stos RTP/RTCP do
29 wysy³ania i odbierania danych w czasie rzeczywistym z u¿yciem kolejek
30 wysy³ania i odbierania pakietów. ccRTP obs³uguje unicasty,
31 multi-unicasty i multicasty, zarz±dza wieloma ¼ród³ami, obs³uguje
32 automatycznie RTCP, wspiera ró¿ne modele w±tkowania i jest ogólny dla
33 podstawowych sieci i protoko³ów transportowych.
34
35 %package devel
36 Summary:        Header files for ccrtp library
37 Summary(pl):    Pliki nag³ówkowe biblioteki ccrtp
38 Group:          Development/Libraries
39 Requires:       %{name} = %{version}-%{release}
40 Requires:       commoncpp2-devel
41
42 %description devel
43 Header files for ccrtp library.
44
45 %description devel -l pl
46 Pliki nag³ówkowe biblioteki ccrtp.
47
48 %package static
49 Summary:        Static ccrtp library
50 Summary(pl):    Statyczna biblioteka ccrtp
51 Group:          Development/Libraries
52 Requires:       %{name}-devel = %{version}-%{release}
53
54 %description static
55 Static ccrtp library.
56
57 %description static -l pl
58 Statyczna biblioteka ccrtp.
59
60 %prep
61 %setup -q
62
63 %build
64 %configure
65 %{__make}
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         DESTDIR=$RPM_BUILD_ROOT
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post   -p /sbin/ldconfig
77 %postun -p /sbin/ldconfig
78
79 %files
80 %defattr(644,root,root,755)
81 %doc AUTHORS COPYING COPYING.addendum README
82 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
83
84 %files devel
85 %defattr(644,root,root,755)
86 %doc doc/html/*.html doc/html/*.*g*
87 %attr(755,root,root) %{_libdir}/lib*.so
88 %{_libdir}/lib*.la
89 %{_includedir}/ccrtp
90 %{_pkgconfigdir}/*.pc
91 %{_infodir}/*.info*
92
93 %files static
94 %defattr(644,root,root,755)
95 %{_libdir}/lib*.a
This page took 0.059563 seconds and 3 git commands to generate.