# Maintainer: Bruno Pagani # Contributor: Mirco Tischler # ALARM: Kevin Mihelich # - remove depends on libsmbios, efivar # - remove makedepends on valgrind, gnu-efi-libs, tpm2-tss # - meson with -Dplugin_dell=false (smbios dependency) # - meson with -Dplugin_uefi=false -Dplugin_redfish=false -Dplugin_nvme=false (efivar, gnu-efi-libs dependency) # - meson with -Dplugin_tpm=false (tpm2-tss dependency) pkgname=fwupd pkgver=1.3.9 pkgrel=2 pkgdesc="Simple daemon to allow session software to update firmware" arch=(x86_64) url="https://github.com/fwupd/fwupd" license=(LGPL) depends=(libxmlb python libgusb libsoup json-glib gcab libarchive gpgme libgudev polkit shared-mime-info) optdepends=( 'modemmanager: modem firmware upgrade support' 'udisks2: UEFI firmware upgrade support' ) makedepends=(meson gobject-introspection gtk-doc python-cairo noto-fonts noto-fonts-cjk python-gobject vala bash-completion python-pillow help2man) checkdepends=(umockdev) 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' 'etc/fwupd/uefi.conf' 'etc/fwupd/upower.conf') source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc} fwupd-fix-fwupdtool-path.patch::https://github.com/fwupd/fwupd/commit/d9597df863ca21e0fb2ff821f0c612e0eb0558b2.patch) sha256sums=('66e446f9437c79b5efe59f1f398593d1e0ad1f29065e807c62cbb7c007aac740' 'SKIP' '40f17221f2ddec0df85a388615a0ad6aa057643d153bb4b236c2c484de76c34f') validpgpkeys=(163EB50119225DB3DF8F49EA17ACBA8DFA970E17) # Richard Hughes prepare() { cd ${pkgname}-${pkgver} patch -p1 -i ../fwupd-fix-fwupdtool-path.patch } build() { cd ${pkgname}-${pkgver} arch-meson -D b_lto=false -Dplugin_dell=false -Dplugin_uefi=false -Dplugin_redfish=false -Dplugin_nvme=false -Dplugin_tpm=false ../build ninja -v -C ../build } check() { cd build meson test } package() { DESTDIR="${pkgdir}" ninja -C build install # Fixup mode to match polkit install -d -o root -g 102 -m 750 "${pkgdir}"/usr/share/polkit-1/rules.d # Remove the tests rm -r "${pkgdir}"/usr/share/installed-tests/ }