ab3d3b147c
This reverts commit 2d15aa7306
.
86 lines
2.2 KiB
RPMSpec
86 lines
2.2 KiB
RPMSpec
# Prevent stripping
|
|
%global __spec_install_post /usr/lib/rpm/brp-compress
|
|
# Turn off debuginfo package
|
|
%global debug_package %{nil}
|
|
%global common_description %{expand:
|
|
Memtest86+ is a thorough stand-alone memory test for x86 and x86-64
|
|
architecture computers. BIOS based memory tests are only a quick
|
|
check and often miss many of the failures that are detected by
|
|
Memtest86+.
|
|
}
|
|
%ifarch x86_64
|
|
%global mt_isa x64
|
|
%endif
|
|
%ifarch %{ix86}
|
|
%global mt_isa ia32
|
|
%endif
|
|
|
|
Name: memtest86+
|
|
Version: 7.00
|
|
Release: %autorelease
|
|
Summary: Stand-alone memory tester for x86-64 computers
|
|
License: GPL-2.0-only
|
|
URL: https://www.memtest.org/
|
|
Source0: https://github.com/memtest86plus/memtest86plus/archive/v%{version}/memtest86-plus-%{version}.tar.gz
|
|
Source1: memtest86+.kernel-install-plugin
|
|
|
|
BuildRequires: gcc, make, xorriso, dosfstools, mtools
|
|
Requires(pre): systemd-udev >= 252
|
|
ExclusiveArch: x86_64 %{ix86}
|
|
|
|
%description
|
|
%wordwrap -v common_description
|
|
|
|
|
|
%prep
|
|
%autosetup -n memtest86plus-%{version} -p1
|
|
|
|
|
|
%build
|
|
pushd build%{__isa_bits}
|
|
make
|
|
make iso
|
|
popd
|
|
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_libdir}/%{name}
|
|
mkdir -p %{buildroot}%{_datarootdir}/%{name}
|
|
|
|
pushd build%{__isa_bits}
|
|
install -m 0644 memtest.efi %{buildroot}%{_libdir}/%{name}/memtest86+%{mt_isa}.efi
|
|
install -m 0644 memtest.bin %{buildroot}%{_libdir}/%{name}/memtest86+%{mt_isa}.bin
|
|
install -m 0644 memtest.iso %{buildroot}%{_datarootdir}/%{name}/memtest86+%{mt_isa}.iso
|
|
install -m 0755 %{SOURCE1} %{buildroot}%{_libdir}/%{name}/memtest86+.kernel-install-plugin
|
|
popd
|
|
|
|
|
|
%files
|
|
%license LICENSE
|
|
%doc README.md
|
|
%{_libdir}/%{name}/memtest86+%{mt_isa}.*
|
|
%{_libdir}/%{name}/memtest86+.kernel-install-plugin
|
|
%{_datarootdir}/%{name}/memtest86+%{mt_isa}.iso
|
|
|
|
|
|
%posttrans
|
|
MEMTEST_IMAGE="memtest86+%{mt_isa}.bin"
|
|
if [ -d /sys/firmware/efi/ ]; then
|
|
MEMTEST_IMAGE="memtest86+%{mt_isa}.efi"
|
|
fi
|
|
KERNEL_INSTALL_PLUGINS=%{_libdir}/%{name}/memtest86+.kernel-install-plugin \
|
|
kernel-install add %{version} %{_libdir}/%{name}/${MEMTEST_IMAGE}
|
|
exit 0
|
|
|
|
|
|
%preun
|
|
if [ $1 -eq 0 ]; then
|
|
KERNEL_INSTALL_PLUGINS=%{_libdir}/%{name}/memtest86+.kernel-install-plugin \
|
|
kernel-install remove %{version}
|
|
fi
|
|
exit 0
|
|
|
|
|
|
%changelog
|
|
%autochangelog
|