PKGBUILDs/community/fwupd/PKGBUILD

64 lines
2.4 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)
2020-10-28 21:11:15 +00:00
# - meson with -Dtpm=false (tpm2-tss dependency)
# - meson with -Dplugin_msr=false
2018-10-12 00:16:18 +00:00
pkgname=fwupd
2020-11-04 14:49:47 +00:00
pkgver=1.5.1
2020-09-08 20:08:50 +00:00
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
libsoup json-glib gcab libarchive gpgme
2020-04-15 14:20:07 +00:00
libgudev polkit shared-mime-info
flashrom libjcat)
2020-03-05 01:44:07 +00:00
optdepends=(
'modemmanager: modem firmware upgrade support'
'udisks2: UEFI 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'
2020-03-05 01:44:07 +00:00
'etc/fwupd/uefi.conf'
'etc/fwupd/upower.conf')
2020-04-15 14:20:07 +00:00
source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
2020-11-04 14:49:47 +00:00
sha256sums=('ee69507aae998c5991a9503589f0cb3a720a2294576342fd8d11beb80c65fd3a'
2020-05-18 19:47:58 +00:00
'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() {
2020-10-28 21:11:15 +00:00
arch-meson ${pkgname}-${pkgver} build -D b_lto=false -D plugin_flashrom=true -Dplugin_dell=false -Dplugin_uefi=false -Dplugin_redfish=false -Dplugin_nvme=false -Dtpm=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
2018-10-12 00:16:18 +00:00
}