78 lines
2.0 KiB
RPMSpec
78 lines
2.0 KiB
RPMSpec
|
|
||
|
%define lname libexmdbpp0
|
||
|
Name: libexmdbpp
|
||
|
Version: 1.10.0.3a4d93b
|
||
|
Release: 0
|
||
|
Summary: A C++ implementation of the exmdb wire protocol
|
||
|
License: AGPL-3.0-or-later
|
||
|
Group: Productivity/Networking/Email/Servers
|
||
|
URL: https://grommunio.com/
|
||
|
Source: %name-%version.tar.xz
|
||
|
BuildRequires: cmake
|
||
|
BuildRequires: gcc-c++
|
||
|
BuildRequires: python3-pybind11-devel
|
||
|
BuildRequires: pkgconfig(python3)
|
||
|
BuildRequires: python3
|
||
|
|
||
|
%description
|
||
|
The library provides a C++ API and implementation for constructing
|
||
|
exmdb protocol requests and responses and conversing with a server.
|
||
|
|
||
|
%package -n %lname
|
||
|
Summary: A C++ implementation of the exmdb wire protocol
|
||
|
Group: System/Libraries
|
||
|
|
||
|
%description -n %lname
|
||
|
The library provides a C++ API and implementation for constructing
|
||
|
exmdb protocol requests and responses and conversing with a server.
|
||
|
|
||
|
%package devel
|
||
|
Summary: Development files for libexmdbpp
|
||
|
Group: System/Libraries
|
||
|
Requires: %lname = %version-%release
|
||
|
|
||
|
%description devel
|
||
|
The library provides a C++ API and implementation for constructing
|
||
|
exmdb protocol requests and responses and conversing with a server.
|
||
|
|
||
|
This subpackage contains the header files for the library.
|
||
|
|
||
|
%package -n python3-pyexmdb
|
||
|
Summary: Python bindings for libexmdbpp
|
||
|
Group: Development/Languages/Python
|
||
|
Requires: libexmdbpp0 = %version-%release
|
||
|
|
||
|
%description -n python3-pyexmdb
|
||
|
The library provides a C++ API and implementation for constructing
|
||
|
exmdb protocol requests and responses and conversing with a server.
|
||
|
|
||
|
This subpackage contains bindings for Python.
|
||
|
|
||
|
%prep
|
||
|
%autosetup -p1
|
||
|
|
||
|
%build
|
||
|
%cmake
|
||
|
%cmake_build
|
||
|
|
||
|
%install
|
||
|
%cmake_install
|
||
|
# Stop check-rpaths from complaining about standard runpaths (fedora).
|
||
|
export QA_RPATHS=0x0001
|
||
|
|
||
|
%post -n %lname -p /sbin/ldconfig
|
||
|
%postun -n %lname -p /sbin/ldconfig
|
||
|
|
||
|
%files -n %lname
|
||
|
%_libdir/libexmdbpp.so.0
|
||
|
|
||
|
%files devel
|
||
|
%_includedir/exmdbpp/
|
||
|
%_libdir/libexmdbpp.so
|
||
|
%_datadir/exmdbpp/
|
||
|
|
||
|
%files -n python3-pyexmdb
|
||
|
%python3_sitearch/pyexm*
|
||
|
|
||
|
%changelog
|