55 lines
1.6 KiB
RPMSpec
55 lines
1.6 KiB
RPMSpec
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 <silvan.calarco@mambasoft.it>
|
|
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 <silvan.calarco@mambasoft.it> 0.1.1-1mamba
|
|
- package created using the webbuild interface
|