]> git.pld-linux.org Git - packages/ccrtp.git/commitdiff
- initial
authorundefine <undefine@pld-linux.org>
Wed, 7 Sep 2005 14:53:28 +0000 (14:53 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    ccrtp.spec -> 1.1

ccrtp.spec [new file with mode: 0644]

diff --git a/ccrtp.spec b/ccrtp.spec
new file mode 100644 (file)
index 0000000..9d09b83
--- /dev/null
@@ -0,0 +1,89 @@
+# TODO
+# - pl description
+Summary:       Common C++ class framework for RTP/RTCP
+Summary(pl):   Szkielet klas C++ dla RTP/RTCP
+Name:          ccrtp
+Version:       1.3.4
+Release:       1
+License:       GPL
+Group:         Libraries
+Source0:       ftp://ftp.gnu.org/pub/gnu/ccrtp/%{name}-%{version}.tar.gz
+# Source0-md5: a73a524ced1105e738cddb8574c469de
+URL:           http://www.gnu.org/software/ccrtp
+BuildRequires: commoncpp2-devel
+BuildRequires: doxygen
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+ccRTP is a generic, extensible and efficient C++ framework for
+developing applications based on the Real-Time Transport Protocol
+(RTP) from the IETF. It is based on Common C++ and provides a full
+RTP/RTCP stack for sending and receiving of realtime data by the use
+of send and receive packet queues. ccRTP supports unicast,
+multi-unicast and multicast, manages multiple sources, handles RTCP
+automatically, supports different threading models and is generic as
+for underlying network and transport protocols.
+
+%description -l pl
+
+%package devel
+Summary:       Header files for ccrtp library
+Summary(pl):   Pliki nag³ówkowe biblioteki ccrtp
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+Requires:      commoncpp2-devel
+
+%description devel
+Header files for ccrtp library.
+
+%description devel -l pl
+Pliki nag³ówkowe biblioteki ccrtp.
+
+%package static
+Summary:       Static ccrtp library
+Summary(pl):   Statyczna biblioteka ccrtp
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static ccrtp library.
+
+%description static -l pl
+Statyczna biblioteka ccrtp.
+
+%prep
+%setup -q
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc %doc AUTHORS COPYING COPYING.addendum README
+%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%doc doc/html/*.html doc/html/*.*g*
+%attr(755,root,root) %{_libdir}/lib*.so
+%{_libdir}/lib*.la
+%{_includedir}/ccrtp
+%{_pkgconfigdir}/*.pc
+%{_infodir}/*
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/lib*.a
This page took 0.071354 seconds and 4 git commands to generate.