# # spec file for package libzrtpcpp # # Copyright (c) 2013 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 %define lname libzrtpcpp4 Version: 4.1.0 Release: 0 Summary: A ccrtp extension for ZRTP support License: GPL-3.0+ Group: Development/Libraries/C and C++ Url: http://www.gnutelephony.org/index.php/GNU_ZRTP #Freecode-URL: http://freecode.com/projects/libzrtpcpp #Git-Clone: git://github.com/wernerd/ZRTPCPP #Snapshot: V4.1.0 # No longer produces release tarballs since 3.x. Source: %name-%version.tar.xz BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: pkgconfig BuildRequires: xz %if 0%{?suse_version} >= 1130 BuildRequires: pkgconfig(libccrtp) >= 2 BuildRequires: pkgconfig(libcrypto) >= 0.9.8 BuildRequires: pkgconfig(sqlite3) >= 3.7 %else BuildRequires: ccrtp-devel >= 2 BuildRequires: libopenssl-devel >= 0.9.8 BuildRequires: sqlite3-devel >= 3.7 %endif 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 -n %lname Summary: A ccrtp extension for ZRTP support Group: System/Libraries %description -n %lname 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 Summary: Headers and link library for libzrtpcpp Group: Development/Libraries/C and C++ Requires: %{lname} = %{version} Requires: ccrtp-devel >= 2.0.0 %description devel This package provides the header files, link libraries, and documentation for building applications that use libzrtpcpp. %prep %setup -qn ZRTPCPP %build mkdir build cd build cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \ -DCMAKE_C_FLAGS:STRING="%{optflags}" \ -DCMAKE_CXX_FLAGS:STRING="%{optflags}" \ -DCRYPTO_STANDALONE:BOOL=false \ %if "%{_lib}" == "lib64" -DLIB_SUFFIX=64 \ %endif .. #perl -i -pe 's{@zrtplib@}{-lzrtpcpp}g' *.pc.cmake make %{?_smp_mflags} VERBOSE=1 %install cd build make install DESTDIR="%buildroot" %post -p /sbin/ldconfig -n %lname %postun -p /sbin/ldconfig -n %lname %files -n %lname %defattr(-,root,root,0755) %doc AUTHORS COPYING README.md %_libdir/libzrtpcpp.so.4* %files devel %defattr(-,root,root,0755) %{_libdir}/libzrtpcpp.so %{_libdir}/pkgconfig/libzrtpcpp.pc %{_includedir}/libzrtpcpp/ %changelog