PKGBUILDs/community/fwupd/PKGBUILD

58 lines
2.1 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
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)
# - meson with -Dplugin_uefi=false -Dplugin_redfish=false -Dplugin_nvme=false (efivar, gnu-efi-libs dependency)
2019-12-31 01:46:20 +00:00
# - meson with -Dplugin_tpm=false (tpm2-tss dependency)
2018-10-12 00:16:18 +00:00
pkgname=fwupd
2020-02-14 13:38:44 +00:00
pkgver=1.3.8
2020-02-24 13:22:31 +00:00
pkgrel=2
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
libsoup json-glib gcab libarchive gpgme
2020-02-14 13:38:44 +00:00
libgudev polkit shared-mime-info)
optdepends=('modemmanager: modem firmware upgrade support')
2019-04-14 23:31:52 +00:00
makedepends=(meson gobject-introspection gtk-doc
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)
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')
2019-09-27 01:13:10 +00:00
source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
2020-02-14 13:38:44 +00:00
sha256sums=('1d49f33fd18af6e0cef630092abe4b48253841915b18cd83f9c40e23c6e50b92'
'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() {
cd ${pkgname}-${pkgver}
2019-12-31 01:46:20 +00:00
arch-meson -D b_lto=false -Dplugin_dell=false -Dplugin_uefi=false -Dplugin_redfish=false -Dplugin_nvme=false -Dplugin_tpm=false ../build
2018-10-12 00:16:18 +00:00
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
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
}