forked from suse-edge/Factory
91 lines
2.8 KiB
RPMSpec
91 lines
2.8 KiB
RPMSpec
|
#
|
||
|
# spec file for package shim
|
||
|
#
|
||
|
# Copyright (c) 2021 SUSE LLC
|
||
|
#
|
||
|
# All modifications and additions to the file contributed by third parties
|
||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||
|
# upon. The license for this file, and modifications and additions to the
|
||
|
# file, is the same license as for the pristine package itself (unless the
|
||
|
# license for the pristine package is not an Open Source License, in which
|
||
|
# case the license is the MIT License). An "Open Source License" is a
|
||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||
|
# published by the Open Source Initiative.
|
||
|
|
||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
%undefine _debuginfo_subpackages
|
||
|
%undefine _build_create_debug
|
||
|
# Move 'efi'-executables to '/usr/share/efi' (FATE#326960, bsc#1166523)
|
||
|
%define sysefibasedir %{_datadir}/efi
|
||
|
|
||
|
Name: shim
|
||
|
Version: 15.7
|
||
|
Release: 0
|
||
|
Summary: UEFI shim loader
|
||
|
License: BSD-2-Clause
|
||
|
Group: System/Boot
|
||
|
URL: https://github.com/rhboot/shim
|
||
|
Source: shim-15.7-150300.4.16.1.x86_64.rpm
|
||
|
Source1: shim-15.7-150300.4.16.1.aarch64.rpm
|
||
|
Requires: perl-Bootloader
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
shim is a trivial EFI application that, when run, attempts to open and
|
||
|
execute another application.
|
||
|
|
||
|
%package aarch64
|
||
|
Provides: shim(aarch64)
|
||
|
Group: System/Boot
|
||
|
Summary: UEFI shim loader
|
||
|
|
||
|
%package x86_64
|
||
|
Provides: shim(x86_64)
|
||
|
Group: System/Boot
|
||
|
Summary: UEFI shim loader
|
||
|
|
||
|
%description aarch64
|
||
|
shim is a trivial EFI application that, when run, attempts to open and
|
||
|
execute another application.
|
||
|
|
||
|
%description x86_64
|
||
|
shim is a trivial EFI application that, when run, attempts to open and
|
||
|
execute another application.
|
||
|
|
||
|
%prep
|
||
|
rpm2cpio %{SOURCE0} | cpio --extract --unconditional --preserve-modification-time --make-directories
|
||
|
rpm2cpio %{SOURCE1} | cpio --extract --unconditional --preserve-modification-time --make-directories
|
||
|
|
||
|
%build
|
||
|
|
||
|
%install
|
||
|
# purely repackaged
|
||
|
cp -a * %{buildroot}
|
||
|
rm -rf %{buildroot}/usr/lib64/efi
|
||
|
rm %{buildroot}/etc/uefi/certs/BCA4E38E-shim.crt %{buildroot}/usr/sbin/shim-install %{buildroot}/usr/share/doc/packages/shim/COPYRIGHT
|
||
|
|
||
|
%files aarch64
|
||
|
%defattr(-,root,root)
|
||
|
%dir %{?sysefibasedir}
|
||
|
%dir %{sysefibasedir}/aarch64
|
||
|
%{sysefibasedir}/aarch64/shim.efi
|
||
|
%{sysefibasedir}/aarch64/shim-*.efi
|
||
|
%{sysefibasedir}/aarch64/shim-*.der
|
||
|
%{sysefibasedir}/aarch64/MokManager.efi
|
||
|
%{sysefibasedir}/aarch64/fallback.efi
|
||
|
|
||
|
%files x86_64
|
||
|
%defattr(-,root,root)
|
||
|
%dir %{?sysefibasedir}
|
||
|
%dir %{sysefibasedir}/x86_64
|
||
|
%{sysefibasedir}/x86_64/shim.efi
|
||
|
%{sysefibasedir}/x86_64/shim-*.efi
|
||
|
%{sysefibasedir}/x86_64/shim-*.der
|
||
|
%{sysefibasedir}/x86_64/MokManager.efi
|
||
|
%{sysefibasedir}/x86_64/fallback.efi
|
||
|
|
||
|
%changelog
|