]> git.pld-linux.org Git - packages/ccrtp.git/blob - ccrtp.spec
- initial
[packages/ccrtp.git] / ccrtp.spec
1 # TODO
2 # - pl description
3 Summary:        Common C++ class framework for RTP/RTCP
4 Summary(pl):    Szkielet klas C++ dla RTP/RTCP
5 Name:           ccrtp
6 Version:        1.3.4
7 Release:        1
8 License:        GPL
9 Group:          Libraries
10 Source0:        ftp://ftp.gnu.org/pub/gnu/ccrtp/%{name}-%{version}.tar.gz
11 # Source0-md5:  a73a524ced1105e738cddb8574c469de
12 URL:            http://www.gnu.org/software/ccrtp
13 BuildRequires:  commoncpp2-devel
14 BuildRequires:  doxygen
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 ccRTP is a generic, extensible and efficient C++ framework for
19 developing applications based on the Real-Time Transport Protocol
20 (RTP) from the IETF. It is based on Common C++ and provides a full
21 RTP/RTCP stack for sending and receiving of realtime data by the use
22 of send and receive packet queues. ccRTP supports unicast,
23 multi-unicast and multicast, manages multiple sources, handles RTCP
24 automatically, supports different threading models and is generic as
25 for underlying network and transport protocols.
26
27 %description -l pl
28
29 %package devel
30 Summary:        Header files for ccrtp library
31 Summary(pl):    Pliki nag³ówkowe biblioteki ccrtp
32 Group:          Development/Libraries
33 Requires:       %{name} = %{version}-%{release}
34 Requires:       commoncpp2-devel
35
36 %description devel
37 Header files for ccrtp library.
38
39 %description devel -l pl
40 Pliki nag³ówkowe biblioteki ccrtp.
41
42 %package static
43 Summary:        Static ccrtp library
44 Summary(pl):    Statyczna biblioteka ccrtp
45 Group:          Development/Libraries
46 Requires:       %{name}-devel = %{version}-%{release}
47
48 %description static
49 Static ccrtp library.
50
51 %description static -l pl
52 Statyczna biblioteka ccrtp.
53
54 %prep
55 %setup -q
56
57 %build
58 %configure
59 %{__make}
60
61 %install
62 rm -rf $RPM_BUILD_ROOT
63
64 %{__make} install \
65         DESTDIR=$RPM_BUILD_ROOT
66
67 %clean
68 rm -rf $RPM_BUILD_ROOT
69
70 %post   -p /sbin/ldconfig
71 %postun -p /sbin/ldconfig
72
73 %files
74 %defattr(644,root,root,755)
75 %doc %doc AUTHORS COPYING COPYING.addendum README
76 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
77
78 %files devel
79 %defattr(644,root,root,755)
80 %doc doc/html/*.html doc/html/*.*g*
81 %attr(755,root,root) %{_libdir}/lib*.so
82 %{_libdir}/lib*.la
83 %{_includedir}/ccrtp
84 %{_pkgconfigdir}/*.pc
85 %{_infodir}/*
86
87 %files static
88 %defattr(644,root,root,755)
89 %{_libdir}/lib*.a
This page took 0.087295 seconds and 4 git commands to generate.