hc
2024-08-19 eb6b9ee90f50f13c5abb885ce483802d6262f2b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
################################################################################
#
# libfuse3
#
################################################################################
 
LIBFUSE3_VERSION = 3.10.5
LIBFUSE3_SITE = $(call github,libfuse,libfuse,fuse-$(LIBFUSE3_VERSION))
LIBFUSE3_LICENSE = LGPL-2.1
LIBFUSE3_LICENSE_FILES = LICENSE
LIBFUSE3_CPE_ID_VENDOR = libfuse_project
LIBFUSE3_CPE_ID_PRODUCT = libfuse
LIBFUSE3_INSTALL_STAGING = YES
LIBFUSE3_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
LIBFUSE3_CONF_OPTS = \
   -Dexamples=false \
   -Dudevrulesdir=/lib/udev/rules.d \
   -Duseroot=false \
   -Dtests=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
 
define LIBFUSE3_LINUX_CONFIG_FIXUPS
   $(call KCONFIG_ENABLE_OPT,CONFIG_FUSE_FS)
endef
 
$(eval $(meson-package))