Files
buildroot/package/unionfs/unionfs.mk
Bernd Kuhls cf7b7470da package/unionfs: bump version to 3.7
Release notes:
https://github.com/rpodgorny/unionfs-fuse/blob/master/NEWS

Version 3.0 added support for libfuse3.

Updated license hash due to copyright year bump:
3fcbd11f78

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-12-02 22:34:43 +01:00

22 lines
592 B
Makefile

################################################################################
#
# unionfs
#
################################################################################
UNIONFS_VERSION = 3.7
UNIONFS_SITE = $(call github,rpodgorny,unionfs-fuse,v$(UNIONFS_VERSION))
UNIONFS_DEPENDENCIES = host-pkgconf
UNIONFS_LICENSE = BSD-3-Clause
UNIONFS_LICENSE_FILES = LICENSE
ifeq ($(BR2_PACKAGE_LIBFUSE3),y)
UNIONFS_CONF_OPTS += -DWITH_LIBFUSE3=TRUE
UNIONFS_DEPENDENCIES += libfuse3
else
UNIONFS_CONF_OPTS += -DWITH_LIBFUSE3=FALSE
UNIONFS_DEPENDENCIES += libfuse
endif
$(eval $(cmake-package))