package created using the webbuild interface [release 0.7.2-1mamba;Fri Nov 01 2024]

This commit is contained in:
Silvan Calarco 2024-11-01 22:29:30 +01:00
parent 1ffb2071c6
commit 2d6fe1b014
2 changed files with 51 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# mokutil # mokutil
Utility to manipulate machine owner keys.

49
mokutil.spec Normal file
View File

@ -0,0 +1,49 @@
Name: mokutil
Version: 0.7.2
Release: 1mamba
Summary: Utility to manipulate machine owner keys
Group: System/Security
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/lcp/mokutil
Source: https://github.com/lcp/mokutil.git/%{version}/mokutil-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libefivar-devel
BuildRequires: libkeyutils-devel
BuildRequires: libopenssl-devel
BuildRequires: libxcrypt-devel
## AUTOBUILDREQ-END
%description
Utility to manipulate machine owner keys.
%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}/mokutil
%{_datadir}/bash-completion/completions/mokutil
%{_mandir}/man1/mokutil.1*
%doc COPYING
%changelog
* Fri Nov 01 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 0.7.2-1mamba
- package created using the webbuild interface