void-packages/srcpkgs/fwupd/template
2019-02-01 20:02:22 -02:00

51 lines
1.8 KiB
Bash

# Template file for 'fwupd'
pkgname=fwupd
version=1.2.4
revision=1
build_style=meson
# manpages fail to build
# tests require unpackaged umockdev
configure_args="-Dconsolekit=false -Dgtkdoc=false -Dintrospection=true
-Dsystemd=false -Dplugin_altos=false -Dtests=false -Dman=false
-Dpkcs7=false -Db_lto=false"
hostmakedepends="dejavu-fonts-ttf gnutls-tools help2man pkg-config gcab
gobject-introspection python3-Pillow"
makedepends="libxmlb-devel cairo-devel colord-devel libarchive-devel
gnutls-devel gpgme-devel json-glib-devel libgusb-devel polkit-devel
python3-gobject sqlite-devel libsoup-devel gcab-devel pango-devel"
short_desc="Daemon to allow session software to update firmware"
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
license="LGPL-2.1-or-later"
homepage="https://github.com/hughsie/fwupd"
distfiles="https://github.com/hughsie/fwupd/archive/${version}.tar.gz"
checksum=ffb2d1b5b1d334182b25d40ff6d1541444783abe24771629a0a661057f0f3a16
nocross="depends on python3-gobject whether or not introspection is enabled"
conf_files="/etc/dbus-1/system.d/org.freedesktop.fwupd.conf
/etc/fwupd/daemon.conf /etc/fwupd/remotes.d/*.conf"
case "$XBPS_TARGET_MACHINE" in
x86_64|i686) makedepends+=" libsmbios-devel" ;;
*-musl) configure_args+=" -Dplugin_dell=false" ;;
esac
case "$XBPS_TARGET_MACHINE" in
ppc64*)
configure_args+=" -Dplugin_uefi=false"
configure_args+=" -Dplugin_redfish=false"
configure_args+=" -Dplugin_nvme=false"
configure_args+=" -Dplugin_dell=false"
;;
*) makedepends+=" gnu-efi-libs libefivar-devel" ;;
esac
fwupd-devel_package() {
depends="${sourcepkg}>=${version}_${revision} libglib-devel"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
vmove usr/share/gir-1.0
vmove usr/share/vala
}
}