diff --git a/dbxtool.spec b/dbxtool.spec new file mode 100644 index 0000000..cf2b037 --- /dev/null +++ b/dbxtool.spec @@ -0,0 +1,47 @@ +Name: dbxtool +Version: 0.4 +Release: 1%{?dist} +Summary: Secure Boot DBX updater +License: GPLv2 +URL: https://github.com/vathpela/dbxtool +Requires: popt efivar-libs +ExclusiveArch: i386 x86_64 aarch64 +BuildRequires: popt-devel git efivar-devel +Source0: https://github.com/vathpela/dbxtool/releases/download/dbxtool-%{version}/dbxtool-%{version}.tar.bz2 + +%description +This package contains DBX updates for UEFI Secure Boot. + +%prep +%setup -q -n %{name}-%{version} +git init +git config user.email "%{name}-owner@fedoraproject.org" +git config user.name "Fedora Ninjas" +git add . +git commit -a -q -m "%{version} baseline." +git am %{patches} - 0.4-1 +- First packaging attempt.