mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-05 03:13:41 +08:00
06a0b11330
cpe:2.3🅰️libfuse_project:libfuse is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Alibfuse_project%3Alibfuse Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> [yann.morin.1998@free.fr: fix URL] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# libfuse
|
|
#
|
|
################################################################################
|
|
|
|
LIBFUSE_VERSION = 2.9.9
|
|
LIBFUSE_SOURCE = fuse-$(LIBFUSE_VERSION).tar.gz
|
|
LIBFUSE_SITE = https://github.com/libfuse/libfuse/releases/download/fuse-$(LIBFUSE_VERSION)
|
|
LIBFUSE_LICENSE = GPL-2.0, LGPL-2.1
|
|
LIBFUSE_LICENSE_FILES = COPYING COPYING.LIB
|
|
LIBFUSE_CPE_ID_VENDOR = libfuse_project
|
|
LIBFUSE_INSTALL_STAGING = YES
|
|
LIBFUSE_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
|
LIBFUSE_CONF_OPTS = \
|
|
--disable-example \
|
|
--enable-lib \
|
|
--enable-util \
|
|
UDEV_RULES_PATH=/lib/udev/rules.d
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
define LIBFUSE_INSTALL_UDEV
|
|
mkdir -p $(TARGET_DIR)/lib/udev/rules.d
|
|
cp $(STAGING_DIR)/lib/udev/rules.d/*-fuse.rules $(TARGET_DIR)/lib/udev/rules.d
|
|
endef
|
|
|
|
LIBFUSE_POST_INSTALL_TARGET_HOOKS += LIBFUSE_INSTALL_UDEV
|
|
endif
|
|
|
|
define LIBFUSE_INSTALL_TARGET_CMDS
|
|
cp -dpf $(STAGING_DIR)/usr/bin/fusermount $(TARGET_DIR)/usr/bin/
|
|
cp -dpf $(STAGING_DIR)/usr/lib/libfuse.so* $(TARGET_DIR)/usr/lib/
|
|
endef
|
|
|
|
define LIBFUSE_DEVICES
|
|
/dev/fuse c 666 0 0 10 229 0 0 -
|
|
endef
|
|
|
|
define LIBFUSE_PERMISSIONS
|
|
/usr/bin/fusermount f 4755 0 0 - - - - -
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|