xref: /OK3568_Linux_fs/buildroot/package/libfuse3/libfuse3.mk (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1################################################################################
2#
3# libfuse3
4#
5################################################################################
6
7LIBFUSE3_VERSION = 3.10.5
8LIBFUSE3_SITE = $(call github,libfuse,libfuse,fuse-$(LIBFUSE3_VERSION))
9LIBFUSE3_LICENSE = LGPL-2.1
10LIBFUSE3_LICENSE_FILES = LICENSE
11LIBFUSE3_CPE_ID_VENDOR = libfuse_project
12LIBFUSE3_CPE_ID_PRODUCT = libfuse
13LIBFUSE3_INSTALL_STAGING = YES
14LIBFUSE3_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
15LIBFUSE3_CONF_OPTS = \
16	-Dexamples=false \
17	-Dudevrulesdir=/lib/udev/rules.d \
18	-Duseroot=false \
19	-Dtests=false
20
21define LIBFUSE3_DEVICES
22	/dev/fuse c 666 0 0 10 229 0 0 -
23endef
24
25define LIBFUSE3_PERMISSIONS
26	/usr/bin/fusermount3 f 4755 0 0 - - - - -
27endef
28
29define LIBFUSE3_LINUX_CONFIG_FIXUPS
30	$(call KCONFIG_ENABLE_OPT,CONFIG_FUSE_FS)
31endef
32
33$(eval $(meson-package))
34