forked from pool/libzrtpcpp
This commit is contained in:
commit
2f5af5567e
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
libzrtpcpp-0.9.0.tar.bz2
Normal file
3
libzrtpcpp-0.9.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:99348f9d665630d4b9ce7f9a2ef9326440c5e0a57a8371d3604d757bc32fda6f
|
||||
size 340610
|
14
libzrtpcpp.changes
Normal file
14
libzrtpcpp.changes
Normal file
@ -0,0 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 2 11:44:38 CET 2007 - mskibbe@suse.de
|
||||
|
||||
- libzrtpcpp-devel has a broken epoch and packaging bugs (#249532)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 15 09:51:45 CET 2007 - mskibbe@suse.de
|
||||
|
||||
- change package for SuSE
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Oct 15 12:00:00 CET 2007 - cs@linux-administrator.com
|
||||
|
||||
- initial package build for SuSE 10.1
|
82
libzrtpcpp.spec
Normal file
82
libzrtpcpp.spec
Normal file
@ -0,0 +1,82 @@
|
||||
#
|
||||
# spec file for package libzrtpcpp (Version 0.9.0)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: libzrtpcpp
|
||||
Summary: a ccrtp extension for zrtp/Zfone support
|
||||
Requires: ccrtp >= 1.5.0
|
||||
BuildRequires: ccrtp-devel >= 1.5.0 gcc gcc-c++ libgcc libgcrypt-devel libstdc++-devel openssl-devel pkgconfig
|
||||
Version: 0.9.0
|
||||
Release: 3
|
||||
License: GNU General Public License (GPL), GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
||||
Group: Development/Libraries/Other
|
||||
URL: http://www.gnu.org/software/commoncpp/commoncpp.html
|
||||
Source0: ftp://ftp.gnu.org/gnu/cccrtp/%{name}-%{version}.tar.bz2
|
||||
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
|
||||
Group: Development/Libraries/Other
|
||||
Summary: Headers and static link library for libzrtpcpp
|
||||
Requires: %{name} = %{version}
|
||||
Requires: ccrtp-devel >= 1.5.0
|
||||
Requires: libgcrypt-devel
|
||||
|
||||
%description devel
|
||||
This package provides the header files, link libraries, and
|
||||
documentation for building applications that use libzrtpcpp.
|
||||
|
||||
|
||||
|
||||
%prep
|
||||
%setup
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?jobs:-j%jobs}
|
||||
|
||||
%install
|
||||
%makeinstall
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,0755)
|
||||
%doc AUTHORS COPYING README
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,0755)
|
||||
%{_libdir}/*.a
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/*.la
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%{_includedir}/libzrtpcpp/*.h
|
||||
%dir %{_includedir}/libzrtpcpp
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%changelog
|
||||
* Mon Oct 15 2007 - cs@linux-administrator.com
|
||||
- initial package build for SuSE 10.1
|
||||
* Fri Mar 02 2007 - mskibbe@suse.de
|
||||
- libzrtpcpp-devel has a broken epoch and packaging bugs (#249532)
|
||||
* Thu Feb 15 2007 - mskibbe@suse.de
|
||||
- change package for SuSE
|
Loading…
x
Reference in New Issue
Block a user