PKGBUILDs/community/fwupd/PKGBUILD

82 lines
3.2 KiB
Bash
Raw Normal View History

2018-10-12 00:16:18 +00:00
# Maintainer: Bruno Pagani <archange@archlinux.org>
2021-06-22 20:26:05 +00:00
# Maintainer: Filipe Laíns (FFY00) <lains@archlinux.org>
# Maintainer: Frederik Schwan <freswa at archlinux dot org>
2018-10-12 00:16:18 +00:00
# Contributor: Mirco Tischler <mt-ml at gmx dot de>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2021-06-22 20:26:05 +00:00
# - remove depends on libsmbios, efivar, fwupd-efi
2019-09-18 15:20:33 +00:00
# - remove makedepends on valgrind, gnu-efi-libs, tpm2-tss
2018-10-12 00:16:18 +00:00
# - meson with -Dplugin_dell=false (smbios dependency)
2021-01-11 18:42:25 +00:00
# - meson with -Dplugin_uefi_capsule=false -Dplugin_uefi_pk=false -Dplugin_redfish=false -Dplugin_nvme=false (efivar, gnu-efi-libs dependency)
2020-10-28 21:11:15 +00:00
# - meson with -Dplugin_msr=false
2021-06-22 20:26:05 +00:00
# - meson with -Dplugin_intel_spi=false
2021-08-04 22:41:32 +00:00
# - replace efi_sbat_distro_url with ALARM URL
2018-10-12 00:16:18 +00:00
pkgname=fwupd
2022-12-08 00:23:14 +00:00
pkgver=1.8.8
pkgrel=1
2020-02-14 13:38:44 +00:00
pkgdesc="Simple daemon to allow session software to update firmware"
2019-04-14 23:31:52 +00:00
arch=(x86_64)
2019-09-17 03:46:27 +00:00
url="https://github.com/fwupd/fwupd"
2019-04-14 23:31:52 +00:00
license=(LGPL)
depends=(libxmlb python libgusb
2021-06-22 20:26:05 +00:00
polkit shared-mime-info tpm2-tss flashrom
2021-11-01 15:00:23 +00:00
libjcat gcab hicolor-icon-theme
2022-07-12 00:44:34 +00:00
bluez gnutls
2022-04-28 18:16:34 +00:00
libarchive.so libcurl.so libcbor.so
2021-06-22 20:26:05 +00:00
libjson-glib-1.0.so libgudev-1.0.so libmm-glib.so
2021-11-01 15:00:23 +00:00
libqmi-glib.so libprotobuf-c.so)
2020-03-05 01:44:07 +00:00
optdepends=(
'udisks2: UEFI firmware upgrade support'
)
2022-07-12 00:44:34 +00:00
makedepends=(meson gobject-introspection gi-docgen
2019-04-14 23:31:52 +00:00
python-cairo noto-fonts noto-fonts-cjk python-gobject vala
2019-09-18 15:20:33 +00:00
bash-completion python-pillow help2man)
2019-04-14 23:31:52 +00:00
checkdepends=(umockdev)
2021-06-22 20:26:05 +00:00
provides=(libfwupd.so)
2019-04-14 23:31:52 +00:00
backup=('etc/fwupd/daemon.conf'
'etc/fwupd/redfish.conf'
'etc/fwupd/remotes.d/dell-esrt.conf'
'etc/fwupd/remotes.d/fwupd-tests.conf'
'etc/fwupd/remotes.d/lvfs-testing.conf'
'etc/fwupd/remotes.d/lvfs.conf'
'etc/fwupd/remotes.d/vendor-directory.conf'
'etc/fwupd/remotes.d/vendor.conf'
2021-01-11 18:27:40 +00:00
'etc/fwupd/thunderbolt.conf'
'etc/fwupd/uefi_capsule.conf'
2021-08-04 22:41:32 +00:00
)
2022-12-08 00:23:14 +00:00
source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
sha512sums=('05c9527d5b9013937b106e5a79e0337b66e3d79578bb61ccb27763d95b7d2e93cd816c969a4712e1ca6e5d4b6bc166ea264520e6673ab105a7f6eb2122e69c17'
'SKIP')
b2sums=('12804e59dbc1a2091e81109d0d4cd58b75240835249be546b423858419841cecdb93b4f50406924ccaa609fafb0c96349561b46345d79a66d97133956e4dfa29'
'SKIP')
2019-04-14 23:31:52 +00:00
validpgpkeys=(163EB50119225DB3DF8F49EA17ACBA8DFA970E17) # Richard Hughes <richard@hughsie.com>
2018-10-12 00:16:18 +00:00
build() {
2021-02-17 20:05:45 +00:00
arch-meson ${pkgname}-${pkgver} build \
-D b_lto=false \
2022-07-12 00:44:34 +00:00
-D docs=enabled \
2021-06-22 20:26:05 +00:00
-D plugin_intel_spi=false \
2022-07-12 00:44:34 +00:00
-D supported_build=enabled \
2021-11-02 13:21:20 +00:00
-D efi_binary=false \
2021-06-22 20:26:05 +00:00
-Dplugin_dell=false -Dplugin_uefi_capsule=false -Dplugin_uefi_pk=false -Dplugin_redfish=false -Dplugin_nvme=false -Dplugin_msr=false
2020-07-20 13:58:56 +00:00
meson compile -C build
2018-10-12 00:16:18 +00:00
}
check() {
2020-07-20 13:58:56 +00:00
meson test -C build
2018-10-12 00:16:18 +00:00
}
package() {
2020-07-20 13:58:56 +00:00
DESTDIR="${pkgdir}" meson install -C build
2018-10-12 00:16:18 +00:00
# Fixup mode to match polkit
2019-01-01 15:12:45 +00:00
install -d -o root -g 102 -m 750 "${pkgdir}"/usr/share/polkit-1/rules.d
2018-10-12 00:16:18 +00:00
# Remove the tests
2019-01-01 15:12:45 +00:00
rm -r "${pkgdir}"/usr/share/installed-tests/
2020-09-08 21:28:30 +00:00
#mv "${pkgdir}"/usr/bin/{,fwupd-}dbxtool
#mv "${pkgdir}"/usr/share/man/man1/{,fwupd-}dbxtool.1
2021-05-06 14:07:31 +00:00
# Remove msr module-load config as it is built-in
rm -f "${pkgdir}"/usr/lib/modules-load.d/fwupd-msr.conf
2022-07-12 00:44:34 +00:00
rm -rf "${pkgdir}"/usr/lib/modules-load.d
2018-10-12 00:16:18 +00:00
}