kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit cb450527faf3682e628dcf9de5afaca71fcf8c11
parent fe24dd5ddfd30c0ba7b8b08bcc738f1e6332fa76
Author: St John Karp <contact@stjo.hn>
Date:   Sun, 26 Jun 2022 16:56:43 -0400

fwupd: Split package into fwupd and fwupd-efi

fwupd is designed to be packaged separately from the efi binary.
In addition to adding a separate package for fwupd-efi, I've added
a flag to fwupd that prevents it building the efi binary as a subproject.

Diffstat:
Aextra/fwupd-efi/build | 7+++++++
Aextra/fwupd-efi/checksums | 1+
Aextra/fwupd-efi/sources | 1+
Aextra/fwupd-efi/version | 1+
Mextra/fwupd/build | 1+
5 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/extra/fwupd-efi/build b/extra/fwupd-efi/build @@ -0,0 +1,7 @@ +#!/usr/bin/env sh + +meson build \ + --prefix=/usr + +ninja -C build +ninja -C build install diff --git a/extra/fwupd-efi/checksums b/extra/fwupd-efi/checksums @@ -0,0 +1 @@ +691c77f11c2101048d8dabaf63c6d0fe22cfad0e5d4322041c9babcebafceb3f diff --git a/extra/fwupd-efi/sources b/extra/fwupd-efi/sources @@ -0,0 +1 @@ +https://github.com/fwupd/fwupd-efi/releases/download/VERSION/fwupd-efi-VERSION.tar.xz diff --git a/extra/fwupd-efi/version b/extra/fwupd-efi/version @@ -0,0 +1 @@ +1.2 1 diff --git a/extra/fwupd/build b/extra/fwupd/build @@ -3,6 +3,7 @@ meson build \ --prefix=/usr \ -Ddocs=none \ + -Defi_binary=false \ -Dpolkit=false \ -Dsystemd=false \ -Dtests=false \