void-packages/srcpkgs/fwupd/template
2019-01-17 08:59:42 -02:00

52 lines
1.8 KiB
Bash

# Template file for 'fwupd'
pkgname=fwupd
version=1.2.3
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=06c4c490f81add95e501cf73317f2ea466ad6e2f1c5eb2de81b5855c5f40eeb2
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
}
}