diff --git a/README.md b/README.md index 840d235..717be01 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # sbctl +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. + diff --git a/sbctl.spec b/sbctl.spec new file mode 100644 index 0000000..8689cb3 --- /dev/null +++ b/sbctl.spec @@ -0,0 +1,48 @@ +Name: sbctl +Version: 0.16 +Release: 1mamba +Summary: Secure Boot key manager +Group: System/Kernel and Hardware +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/Foxboron/sbctl +Source: https://github.com/Foxboron/sbctl.git/%{version}/sbctl-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END + +%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. + +%debug_package + +%prep +%setup -q + +%build +%make PREFIX=%{_prefix} + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall PREFIX=%{_prefix} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/sbctl +%{_prefix}/lib/kernel/install.d/91-sbctl.install +%{_datadir}/bash-completion/completions/sbctl +%{_datadir}/fish/vendor_completions.d/sbctl.fish +%{_datadir}/zsh/site-functions/_sbctl +%{_mandir}/man5/sbctl.conf.5* +%{_mandir}/man8/sbctl.8* +%{_datadir}/licenses/sbctl/LICENSE +%doc LICENSE + +%changelog +* Fri Oct 25 2024 Silvan Calarco 0.16-1mamba +- package created using the webbuild interface