package created using the webbuild interface [release 0.1.0.20190318git-1mamba;Mon Mar 18 2019]

This commit is contained in:
Silvan Calarco 2024-01-05 18:24:14 +01:00
parent 94485f943c
commit 68999ab53e
2 changed files with 57 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# telepathy-morse # telepathy-morse
Telegram connection manager for the Telepathy framework.

55
telepathy-morse.spec Normal file
View File

@ -0,0 +1,55 @@
Name: telepathy-morse
Version: 0.1.0.20190318git
Release: 1mamba
Summary: Telegram connection manager for the Telepathy framework
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/TelepathyIM/telepathy-morse
## GITSOURCE https://github.com/TelepathyIM/telepathy-morse.git master
Source: https://github.com/TelepathyIM/telepathy-morse.git/master/telepathy-morse-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libopenssl-devel
BuildRequires: libqt5-devel
BuildRequires: libstdc++6-devel
BuildRequires: libtelegram-qt-devel
BuildRequires: libtelepathy-qt5-devel
BuildRequires: libz-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Telegram connection manager for the Telepathy framework.
%debug_package
%prep
%setup -q
%build
%cmake -d build \
-DCMAKE_INSTALL_LIBEXECDIR=%{_libexecdir}
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_libexecdir}/telepathy-morse
%{_datadir}/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.morse.service
%{_datadir}/telepathy/managers/morse.manager
%doc COPYING
%changelog
* Mon Mar 18 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.0.20190318git-1mamba
- package created using the webbuild interface