PKGBUILDs/community/fwupd/PKGBUILD

60 lines
2.2 KiB
Bash
Raw Normal View History

2018-10-12 00:16:18 +00:00
# Maintainer: Bruno Pagani <archange@archlinux.org>
# Contributor: Mirco Tischler <mt-ml at gmx dot de>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove depends on libsmbios, efivar
# - remove makedepends on valgrind, gnu-efi-libs
# - meson with -Dplugin_dell=false (smbios dependency)
# - meson with -Dplugin_uefi=false -Dplugin_redfish=false -Dplugin_nvme=false (efivar, gnu-efi-libs dependency)
pkgname=fwupd
2019-04-14 23:31:52 +00:00
pkgver=1.2.7
2019-02-02 20:18:34 +00:00
pkgrel=1
2018-11-08 13:24:52 +00:00
pkgdesc="A simple daemon to allow session software to update firmware"
2019-04-14 23:31:52 +00:00
arch=(x86_64)
2018-11-08 13:24:52 +00:00
url="https://github.com/hughsie/fwupd"
2019-04-14 23:31:52 +00:00
license=(LGPL)
depends=(libxmlb python libgusb
libsoup json-glib gcab libarchive gpgme
libgudev polkit shared-mime-info modemmanager)
makedepends=(meson gobject-introspection gtk-doc
python-cairo noto-fonts noto-fonts-cjk python-gobject vala
bash-completion python-pillow help2man)
2019-01-12 23:42:32 +00:00
optdepends=('tpm2-abrmd: TPM2 support'
'tpm2-tools: TPM2 support')
2019-04-14 23:31:52 +00:00
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')
2018-10-12 00:16:18 +00:00
source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
2019-04-14 23:31:52 +00:00
sha256sums=('c37ed23f7e89c2dc3670589b24c4f28ced7405ccee04f996a677ef5283e10cb9' 'SKIP')
validpgpkeys=(163EB50119225DB3DF8F49EA17ACBA8DFA970E17) # Richard Hughes <richard@hughsie.com>
2018-10-12 00:16:18 +00:00
build() {
cd ${pkgname}-${pkgver}
arch-meson -D b_lto=false -Dplugin_dell=false -Dplugin_uefi=false -Dplugin_redfish=false -Dplugin_nvme=false ../build
ninja -v -C ../build
}
check() {
cd build
meson test
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
# 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
2019-01-12 23:42:32 +00:00
# Move D-BUS policy
mv "${pkgdir}"/{etc,usr/share}/dbus-1/system.d
rmdir "${pkgdir}"/etc/dbus-1
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/
2018-10-12 00:16:18 +00:00
}