package created using the webbuild interface [release 0.8.0-1mamba;Tue Oct 28 2014]

This commit is contained in:
Silvan Calarco 2024-01-05 18:24:28 +01:00
parent b69f93f9e0
commit e1cad365d8
2 changed files with 73 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# telepathy-rakia # telepathy-rakia
A SIP connection manager based around the Sofia-SIP library (formerly known as Telepathy-SofiaSIP).

71
telepathy-rakia.spec Normal file
View File

@ -0,0 +1,71 @@
%define apiver 0.7
Name: telepathy-rakia
Version: 0.8.0
Release: 1mamba
Summary: A SIP connection manager based around the Sofia-SIP library
Group: Applications/Communication
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://telepathy.freedesktop.org/wiki/Components/
Source: http://telepathy.freedesktop.org/releases/telepathy-rakia/telepathy-rakia-%{version}.tar.gz
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libdbus-devel
BuildRequires: libdbus-glib-devel
BuildRequires: libffi-devel
BuildRequires: libglib-devel
BuildRequires: libopenssl-devel
BuildRequires: libselinux-devel
BuildRequires: libsofia-sip-devel
BuildRequires: libz-devel
BuildRequires: telepathy-glib-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A SIP connection manager based around the Sofia-SIP library (formerly known as Telepathy-SofiaSIP).
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%configure --enable-gtk-doc
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_libexecdir}/telepathy-rakia
%{_datadir}/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.sofiasip.service
%{_mandir}/man8/telepathy-rakia.8*
%{_datadir}/telepathy/managers/rakia.manager
%doc AUTHORS COPYING
%files devel
%defattr(-,root,root)
%dir %{_includedir}/telepathy-rakia-%{apiver}
%dir %{_includedir}/telepathy-rakia-%{apiver}/rakia
%{_includedir}/telepathy-rakia-%{apiver}/rakia/*.h
%doc ChangeLog NEWS README TODO
%changelog
* Tue Oct 28 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 0.8.0-1mamba
- package created using the webbuild interface