New comment by ericonr on void-packages repository https://github.com/void-linux/void-packages/pull/27107#issuecomment-743768697 Comment: Might make sense to apply this, not sure ```diff diff --git a/srcpkgs/fuse3/template b/srcpkgs/fuse3/template index 7a857d1d25..296bc604d6 100644 --- a/srcpkgs/fuse3/template +++ b/srcpkgs/fuse3/template @@ -4,9 +4,10 @@ version=3.10.1 revision=1 wrksrc="fuse-${version}" build_style=meson -configure_args="--sbindir=bin -Db_lto=false -Dexamples=false -Duseroot=false" +configure_args="--sbindir=bin -Db_lto=false -Duseroot=false" hostmakedepends="pkg-config" makedepends="eudev-libudev-devel" +checkdepends="python3-pytest which" short_desc="Filesystem in Userspace 3.x" maintainer="Anthony Iliopoulos " license="GPL-2.0-or-later, LGPL-2.1-or-later" @@ -15,6 +16,16 @@ distfiles="https://github.com/libfuse/libfuse/releases/download/fuse-${version}/ checksum=d82d74d4c03e099f806e4bb31483955637c69226576bf0ca9bd142f1d50ae451 conf_files="/etc/fuse.conf" +if [ "$XBPS_CHECK_PKGS" ]; then + configure_args+=" -Dexamples=true" +else + configure_args+=" -Dexamples=false" +fi + +do_check() { + : # XXX: tests fail due to permission issues +} + post_install() { chmod u+s ${DESTDIR}/usr/bin/fusermount3 rm ${DESTDIR}/etc/init.d/fuse3 ``` Otherwise, tested locally and the client seems to be working, at least.