mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
46 lines
1.7 KiB
Bash
46 lines
1.7 KiB
Bash
# 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
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc="A simple daemon to allow session software to update firmware"
|
|
arch=('x86_64')
|
|
url="https://github.com/hughsie/fwupd"
|
|
license=('LGPL')
|
|
depends=('libxmlb' 'python' 'libgusb'
|
|
'libsoup' 'json-glib' 'gcab' 'libarchive' 'gpgme'
|
|
'libgudev' 'polkit')
|
|
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/uefi.conf')
|
|
source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc})
|
|
sha256sums=('6d2b91fddbcd1ea9a0c3a9c1867cac5580ac5c0deb9dabde63bba438f45a6f21' 'SKIP')
|
|
validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes <richard@hughsie.com>
|
|
|
|
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
|
|
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/
|
|
}
|