kumquat-buildroot/package/libfuse3/libfuse3.mk
Asaf Kahlon 45bce2575d package/libfuse3: new package
The package is separated from the regular libfuse package, as it
contains new API (and can co-exist with libfuse).

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-04-19 15:01:29 +02:00

27 lines
704 B
Makefile

################################################################################
#
# libfuse3
#
################################################################################
LIBFUSE3_VERSION = 3.9.1
LIBFUSE3_SITE = $(call github,libfuse,libfuse,fuse-$(LIBFUSE3_VERSION))
LIBFUSE3_LICENSE = LGPL-2.1
LIBFUSE3_LICENSE_FILES = LICENSE
LIBFUSE3_INSTALL_STAGING = YES
LIBFUSE3_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
LIBFUSE3_CONF_OPTS = \
-Dexamples=false \
-Dudevrulesdir=/lib/udev/rules.d \
-Duseroot=false
define LIBFUSE3_DEVICES
/dev/fuse c 666 0 0 10 229 0 0 -
endef
define LIBFUSE3_PERMISSIONS
/usr/bin/fusermount3 f 4755 0 0 - - - - -
endef
$(eval $(meson-package))