38 lines
681 B
RPMSpec
38 lines
681 B
RPMSpec
Name: memtest
|
|
Version: 0.3
|
|
Release: alt1
|
|
Summary: Simple memory testing tool
|
|
|
|
Group: System/Base
|
|
License: GPL-3.0-only
|
|
URL: https://ngit.ivk.ru/qa/memtest
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc
|
|
|
|
ExclusiveArch: x86_64
|
|
|
|
%description
|
|
A simple memory test program built using CMake.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
|
|
%install
|
|
mkdir -p %{buildroot}/usr/bin
|
|
install -m 0755 build/memtest %{buildroot}/usr/bin/memtest
|
|
|
|
%files
|
|
%doc README.md
|
|
/usr/bin/memtest
|
|
|
|
%changelog
|
|
* Mon Aug 04 2025 Arseniy Romenskiy <romenskiy@altlinux.org> 0.3-alt1
|
|
- Initial build
|