package created using the webbuild interface [release 0.8.1-1mamba;Mon Feb 05 2024]

This commit is contained in:
Silvan Calarco 2024-02-05 16:09:03 +01:00
parent 8a51ebaab8
commit 0dcbf33157
2 changed files with 53 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# immer
Postmodern immutable and persistent data structures for C++ — value semantics at scale.

51
immer.spec Normal file
View File

@ -0,0 +1,51 @@
Name: immer
Version: 0.8.1
Release: 1mamba
Summary: Postmodern immutable and persistent data structures for C++ value semantics at scale
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://sinusoid.es/immer
Source: https://github.com/arximboldi/immer.git/v%{version}/immer-%{version}.tar.bz2
License: BSL-1.0
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: cmake
%description
Postmodern immutable and persistent data structures for C++ value semantics at scale.
%package devel
Group: Development/Libraries
Summary: Postmodern immutable and persistent data structures for C++ value semantics at scale.
%description devel
Postmodern immutable and persistent data structures for C++ value semantics at scale.
This package contains libraries and header files for developing applications that use %{name}.
%prep
%setup -q
%build
%cmake
%cmake_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%cmake_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files devel
%defattr(-,root,root)
%dir %{_includedir}/immer
%{_includedir}/immer/*
%dir %{_libdir}/cmake/Immer
%{_libdir}/cmake/Immer/Immer*.cmake
%doc LICENSE README.rst
%changelog
* Mon Feb 05 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 0.8.1-1mamba
- package created using the webbuild interface