package created using the webbuild interface [release 1.1-1mamba;Sun Jun 20 2021]

This commit is contained in:
Silvan Calarco 2024-01-05 22:36:36 +01:00
parent 1677e783fd
commit 3c0e14eace
2 changed files with 59 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# fwupd-efi
EFI Application used by uefi-capsule plugin in fwupd.

57
fwupd-efi.spec Normal file
View File

@ -0,0 +1,57 @@
Name: fwupd-efi
Version: 1.1
Release: 1mamba
Summary: EFI Application used by uefi-capsule plugin in fwupd
Group: System/Kernel and Hardware
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/fwupd/fwupd-efi
Source: https://github.com/fwupd/fwupd-efi.git/%{version}/fwupd-efi-%{version}.tar.bz2
License: LGPL
## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
BuildRequires: gnu-efi
%description
EFI Application used by uefi-capsule plugin in fwupd.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
#% debug_package
%prep
%setup -q
%build
%meson
%meson_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%meson_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%dir %{_libexecdir}/fwupd/efi
%{_libexecdir}/fwupd/efi/fwupd*.efi
%doc AUTHORS COPYING
%files devel
%defattr(-,root,root)
%{_libdir}/pkgconfig/fwupd-efi.pc
%doc README.md
%changelog
* Sun Jun 20 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.1-1mamba
- package created using the webbuild interface