c2e32e6558
- new upstream version; - add 0001-erofs-utils-dump-fix-de-nid-issues.patch [1]; - add 0002-fsck-main.c-add-missing-include.patch [2]; - add 0003-erofs-utils-lib-fix-blobdev-without-Eforce-chunk-ind.patch [3]; - add 0004-erofs-utils-fix-Makefile-for-fsck.erofs-manpage.patch [4]. [1] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=17eb5c417bd56be4b2f7627c2d6879fbad6a86d6 [2] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=1ca453ee89894b1669ac78d7f216bda172783e8d [3] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=eb255afa101b52096bd3e5e48f990576190f03bd [4] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=534eda7f8678e5b8fc8ca0f5cf0d9d7a932e0d48 Signed-off-by: Gao Xiang <hsiangkao@aol.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# erofs-utils
|
|
#
|
|
################################################################################
|
|
|
|
EROFS_UTILS_VERSION = 1.4
|
|
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
|
|
EROFS_UTILS_AUTORECONF = YES
|
|
|
|
EROFS_UTILS_DEPENDENCIES = host-pkgconf util-linux
|
|
|
|
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
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
EROFS_UTILS_CONF_OPTS += --with-selinux
|
|
EROFS_UTILS_DEPENDENCIES += libselinux
|
|
else
|
|
EROFS_UTILS_CONF_OPTS += --without-selinux
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_EROFS_UTILS_EROFSFUSE),y)
|
|
EROFS_UTILS_CONF_OPTS += --enable-fuse
|
|
EROFS_UTILS_DEPENDENCIES += libfuse
|
|
else
|
|
EROFS_UTILS_CONF_OPTS += --disable-fuse
|
|
endif
|
|
|
|
HOST_EROFS_UTILS_DEPENDENCIES = host-pkgconf host-util-linux host-lz4
|
|
HOST_EROFS_UTILS_CONF_OPTS += --enable-lz4 --disable-fuse --without-selinux
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|