package created using the webbuild interface [release 0.9.5-1mamba;Sat Oct 26 2024]

This commit is contained in:
Silvan Calarco 2024-11-07 21:43:48 +01:00
parent d8d5005b91
commit 2e4676c58f
2 changed files with 58 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# sbsigntools
Tools to add signatures to EFI binaries and Drivers.

56
sbsigntools.spec Normal file
View File

@ -0,0 +1,56 @@
Name: sbsigntools
Version: 0.9.5
Release: 1mamba
Summary: Tools to add signatures to EFI binaries and Drivers
Group: System/Kernel and Hardware
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools
Source: https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git/v%{version}/sbsigntools-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libopenssl-devel
BuildRequires: libuuid-devel
## AUTOBUILDREQ-END
%description
Tools to add signatures to EFI binaries and Drivers.
%debug_package
%prep
%setup -q
./autogen.sh
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/sbattach
%{_bindir}/sbkeysync
%{_bindir}/sbsiglist
%{_bindir}/sbsign
%{_bindir}/sbvarsign
%{_bindir}/sbverify
%{_mandir}/man1/sbattach.1*
%{_mandir}/man1/sbkeysync.1*
%{_mandir}/man1/sbsiglist.1*
%{_mandir}/man1/sbsign.1*
%{_mandir}/man1/sbvarsign.1*
%{_mandir}/man1/sbverify.1*
%doc COPYING
%changelog
* Sat Oct 26 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 0.9.5-1mamba
- package created using the webbuild interface