359a334e91
This patch adds EROFS userspace tool erofs-utils to buildroot, which can be used to generate EROFS images. Signed-off-by: Gao Xiang <hsiangkao@aol.com> [yann.morin.1998@free.fr: - add explicit --enable-lz4 - explain why autoreconf - add DEVELOPPER entry ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
28 lines
808 B
Makefile
28 lines
808 B
Makefile
################################################################################
|
|
#
|
|
# erofs-utils
|
|
#
|
|
################################################################################
|
|
|
|
EROFS_UTILS_VERSION = 1.0
|
|
EROFS_UTILS_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot
|
|
EROFS_UTILS_LICENSE = GPL-2.0+
|
|
EROFS_UTILS_LICENSE_FILES = COPYING
|
|
|
|
# From a git tree: no generated autotools files
|
|
# Also: 0001-erofs-utils-fix-configure.ac.patch
|
|
EROFS_UTILS_AUTORECONF = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_EROFS_UTILS_LZ4),y)
|
|
EROFS_UTILS_DEPENDENCIES += lz4
|
|
EROFS_UTILS_CONF_OPTS += --enable-lz4
|
|
else
|
|
EROFS_UTILS_CONF_OPTS += --disable-lz4
|
|
endif
|
|
|
|
HOST_EROFS_UTILS_DEPENDENCIES = host-lz4
|
|
HOST_EROFS_UTILS_CONF_OPTS += --enable-lz4
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|