-
Notifications
You must be signed in to change notification settings - Fork 50
/
libzrtpcpp.spec.cmake
123 lines (97 loc) · 3.66 KB
/
libzrtpcpp.spec.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#
# spec file for package libzrtpcpp (Version @VERSION@)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: libzrtpcpp
Summary: A ccrtp extension for ZRTP support
BuildRequires: gcc-c++ @BUILD_REQ@ pkgconfig cmake
BuildRequires: libccrtp-devel >= 2.0.0
Version: @VERSION@
Release: 0
License: GPL v3 or later
Group: Development/Libraries/Other
Url: https://github.com/wernerd/ZRTPCPP
Source0: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
This library is a GPL licensed extension to the GNU RTP Stack, ccrtp,
that offers compatibility with Phil Zimmermann's zrtp/Zfone voice
encryption, and which can be directly embedded into telephony
applications.
%package devel
License: GPL v3 or later
Group: Development/Libraries/Other
Summary: Headers and link library for libzrtpcpp
Requires: libzrtpcpp = %{version} libccrtp-devel >= 2.0.0
%description devel
This package provides the header files, link libraries, and
documentation for building applications that use libzrtpcpp.
%prep
%setup -q
%build
%{__mkdir} build
cd build
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DSYSCONFDIR=%{_sysconfdir} \
-DMANDIR=%{_mandir} \
-DCMAKE_VERBOSE_MAKEFILE=TRUE \
-DCMAKE_C_FLAGS_RELEASE:STRING="$RPM_OPT_FLAGS" \
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$RPM_OPT_FLAGS" \
..
%{__make} %{?_smp_mflags}
%install
cd build
%{__rm} -rf %{buildroot}
make install DESTDIR=%{buildroot}
%clean
%{__rm} -rf %{buildroot}
%files -n libzrtpcpp
%defattr(-,root,root,0755)
%doc AUTHORS COPYING README
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root,0755)
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%{_includedir}/libzrtpcpp/*.h
%dir %{_includedir}/libzrtpcpp
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%changelog
* Mon Dec 27 2010 - Werner Dittmann <[email protected]>
- Add Skein MAC authentication algorithm
- lots of documentation added (doxygen ready)
- some code cleanup
* Sun Oct 11 2009 - Werner Dittmann <[email protected]>
- Fix multistream problem
- add DH2048 mode
- update cipher selection to match latest draft (15x)
- Test with zfone3 with Ping packet mode enabled
- some code cleanup
* Wed Jun 24 2009 - David Sugar <[email protected]>
- Spec updated per current Fedora & CentOS policies.
- Updated release 1.4.5 has all mandatory IETF interop requirements.
* Fri Jan 26 2009 - Werner Dittmann <[email protected]>
- Update to version 1.4.2 to support the latest ZRTP
specification draft-zimmermann-avt-zrtp-12
* Fri Aug 22 2008 - David Sugar <[email protected]>
- Adapted for newer library naming conventions.
* Tue Dec 11 2007 - Werner Dittmann <[email protected]>
- this is the first spec file for version 1.x.x
- remove the .la file in devel package
- use default file atttribute instead of 755
* Sat Apr 18 2007 - Werner Dittmann <[email protected]>
- set version to 1.1.0
- GNU ZRTP is compatible with the latest Zfone Beta
from April 2 2007