From 7284321dd47074a3f507856abc50cf1fa1fd89f5 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 04:09:43 +0100 Subject: [PATCH] update to 3.6.0 [release 3.6.0-1mamba;Fri Dec 09 2011] --- README.md | 2 ++ libeXosip2.spec | 68 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 libeXosip2.spec diff --git a/README.md b/README.md index 6afe34a..ac7fc00 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # libeXosip2 +eXosip is a library that hides the complexity of using the SIP protocol for mutlimedia session establishement. This protocol is mainly to be used by VoIP telephony applications (endpoints or conference server) but might be also usefull for any application that wish to establish sessions like multiplayer games. + diff --git a/libeXosip2.spec b/libeXosip2.spec new file mode 100644 index 0000000..2f6ced3 --- /dev/null +++ b/libeXosip2.spec @@ -0,0 +1,68 @@ +Name: libeXosip2 +Version: 3.6.0 +Release: 1mamba +Summary: A library that hides the complexity of using the SIP protocol for mutlimedia session establishement +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://savannah.nongnu.org/projects/exosip +Source: http://mirror.lihnidos.org/GNU/savannah/exosip/libeXosip2-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libopenssl-devel +BuildRequires: libosip2-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +eXosip is a library that hides the complexity of using the SIP protocol for mutlimedia session establishement. This protocol is mainly to be used by VoIP telephony applications (endpoints or conference server) but might be also usefull for any application that wish to establish sessions like multiplayer games. + +%package devel +Summary: Devel package for %{name} +Group: Development/Libraries +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +eXosip is a library that hides the complexity of using the SIP protocol for mutlimedia session establishement. This protocol is mainly to be used by VoIP telephony applications (endpoints or conference server) but might be also usefull for any application that wish to establish sessions like multiplayer games. + +This package contains static libraries and header files need for development. + +%prep +%setup -q + +%build +%configure +%make -j1 + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_bindir}/sip_reg +%{_libdir}/libeXosip2.so.* +%doc AUTHORS COPYING + +%files devel +%defattr(-,root,root) +%{_includedir}/eXosip2/*.h +%{_libdir}/libeXosip2.a +%{_libdir}/libeXosip2.la +%{_libdir}/libeXosip2.so +%doc ChangeLog NEWS README + +%changelog +* Fri Dec 09 2011 Silvan Calarco 3.6.0-1mamba +- update to 3.6.0 + +* Mon Jun 14 2010 Silvan Calarco 3.3.0-1mamba +- package created by autospec