Разерен README.md Добавлена memtest.spec исплавлена CMakeLists.txt
This commit is contained in:
parent
a79187624a
commit
f2530d93e5
3 changed files with 53 additions and 0 deletions
39
memtest.spec
Normal file
39
memtest.spec
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
Name: memtest
|
||||
Version: 0.3
|
||||
Release: alt1
|
||||
Summary: Simple memory testing tool
|
||||
|
||||
Group: Applications/System
|
||||
License: GBL3
|
||||
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 Romenskiy Arsensiy <romenskiy2012@altlinxu.org> - 0.3-1
|
||||
- Initial build
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue