From e78c3ed4f28eaa5e831b79d18eaa15747733ec0a Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Mon, 5 Feb 2024 16:09:42 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.1.1-1mamba;Mon Feb 05 2024] --- README.md | 2 ++ lager.spec | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 lager.spec diff --git a/README.md b/README.md index a736358..4a1f84d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # lager +C++ library for value-oriented design using the unidirectional data-flow architecture — Redux for C++. + diff --git a/lager.spec b/lager.spec new file mode 100644 index 0000000..b677dc1 --- /dev/null +++ b/lager.spec @@ -0,0 +1,54 @@ +Name: lager +Version: 0.1.1 +Release: 1mamba +Summary: C++ library for value-oriented design using the unidirectional data-flow architecture — Redux for C++ +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://sinusoid.es/lager/ +Source: https://github.com/arximboldi/lager.git/v%{version}/lager-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +BuildRequires: cmake + +%description +C++ library for value-oriented design using the unidirectional data-flow architecture — Redux for C++. + +%package devel +Group: Development/Libraries +Summary: C++ library for value-oriented design using the unidirectional data-flow architecture — Redux for C++ + +%description devel +C++ library for value-oriented design using the unidirectional data-flow architecture — Redux for C++. +This package contains libraries and header files for developing applications that use %{name}. + +%prep +%setup -q + +%build +%cmake \ + -Dlager_BUILD_EXAMPLES=OFF \ + -Dlager_BUILD_TESTS=OFF + +%cmake_build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%cmake_install + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/lager +%{_includedir}/lager/* +%dir %{_libdir}/cmake/Lager +%{_libdir}/cmake/Lager/Lager*.cmake +%doc LICENSE LICENSES README.rst + +%changelog +* Mon Feb 05 2024 Silvan Calarco 0.1.1-1mamba +- package created using the webbuild interface