forked from pool/sbctl
* Ensure we don't wrongly compare input/output files when signing * Added --json supprt to sbctl verify * Ensure sbctl setup with no arguments returns a helpful output * Import latest Microsoft keys for KEK and db databases * Ensure we print the path of the file when encountering an invalid PE file * Misc fixups in tests * Misc typo fixes in prints OBS-URL: https://build.opensuse.org/package/show/utilities/sbctl?expand=0&rev=15
97 lines
2.7 KiB
RPMSpec
97 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package sbctl
|
|
#
|
|
# Copyright (c) 2025 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/
|
|
#
|
|
|
|
|
|
Name: sbctl
|
|
Version: 0.17
|
|
Release: 0
|
|
Summary: Secure Boot key manager
|
|
License: MIT
|
|
Group: System/Boot
|
|
URL: https://github.com/Foxboron/sbctl
|
|
%if "%{_vendor}" == "debbuild"
|
|
# Needed to set Maintainer in output debs
|
|
Packager: Jan Loeser <jan.loeser@posteo.de>
|
|
%endif
|
|
Source: %{name}-%{version}.tar.gz
|
|
Source1: vendor.tar.gz
|
|
Source2: %{name}-rpmlintrc
|
|
Requires: binutils
|
|
%if 0%{?suse_version}
|
|
Requires: util-linux-systemd
|
|
%endif
|
|
%if 0%{?ubuntu}
|
|
Requires: util-linux
|
|
%endif
|
|
BuildRequires: asciidoc
|
|
BuildRequires: binutils
|
|
%if 0%{?suse_version}
|
|
BuildRequires: go >= 1.22.0
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: pkgconfig(openssl) > 3.0.0
|
|
%endif
|
|
%if 0%{?ubuntu}
|
|
BuildRequires: golang >= 1.22.0
|
|
BuildRequires: libssl-dev > 3.0.0
|
|
%endif
|
|
|
|
%description
|
|
sbctl intends to be a user-friendly secure boot key manager capable of setting
|
|
up secure boot, offer key management capabilities, and keep track of files that
|
|
needs to be signed in the boot chain.
|
|
|
|
%prep
|
|
%autosetup -a 1
|
|
|
|
%build
|
|
# Remove toolchain directive as we can't download it from external and we lack a corresponding
|
|
# macro package for deb (golang-packaging)
|
|
%if 0%{?ubuntu}
|
|
sed -i '/^toolchain.*/d' go.mod
|
|
%endif
|
|
|
|
# Remove upstream version set.
|
|
sed -i 's|VERSION =.*||' Makefile
|
|
VERSION="%{version}" %make_build all
|
|
|
|
%install
|
|
%make_install BINDIR="%{_sbindir}" PREFIX="%{_prefix}"
|
|
|
|
# Fix potential-bashisms rpmlint error by using bash shebang
|
|
sed -i 's|bin/sh|bin/bash|' %{buildroot}%{_prefix}/lib/kernel/install.d/91-sbctl.install
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
|
|
%dir %{_prefix}/lib/kernel/
|
|
%dir %{_prefix}/lib/kernel/install.d/
|
|
%dir %{_datadir}/fish/
|
|
%dir %{_datadir}/fish/vendor_completions.d/
|
|
%dir %{_datadir}/zsh/
|
|
%dir %{_datadir}/zsh/site-functions/
|
|
|
|
%{_prefix}/lib/kernel/install.d/91-sbctl.install
|
|
%{_mandir}/man8/sbctl.8*
|
|
%{_mandir}/man5/sbctl.conf.5*
|
|
%{_datadir}/bash-completion/completions/sbctl
|
|
%{_datadir}/fish/vendor_completions.d/sbctl.fish
|
|
%{_datadir}/zsh/site-functions/_sbctl
|
|
%{_sbindir}/sbctl
|
|
|
|
%changelog
|