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

This commit is contained in:
Silvan Calarco 2024-02-05 16:10:58 +01:00
parent 8d5774b3f4
commit f4418e3d0a
2 changed files with 53 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# zug
Transducers for C++ — Clojure style higher order push/pull sequence transformations.

51
zug.spec Normal file
View File

@ -0,0 +1,51 @@
Name: zug
Version: 0.1.1
Release: 1mamba
Summary: Transducers for C++ Clojure style higher order push/pull sequence transformations
Group: Development/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://sinusoid.es/zug/
Source: https://github.com/arximboldi/zug.git/v%{version}/zug-%{version}.tar.bz2
License: BSL-1.0
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: cmake
%description
Transducers for C++ Clojure style higher order push/pull sequence transformations.
%package devel
Group: Development/Libraries
Summary: Transducers for C++ Clojure style higher order push/pull sequence transformations.
%description devel
Transducers for C++ Clojure style higher order push/pull sequence transformations.
This package contains 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}/zug
%{_includedir}/zug/*
%dir %{_libdir}/cmake/Zug
%{_libdir}/cmake/Zug/ZugConfig.cmake
%doc LICENSE README.rst
%changelog
* Mon Feb 05 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.1-1mamba
- package created using the webbuild interface