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