1*4882a593Smuzhiyun################################################################################ 2*4882a593Smuzhiyun# 3*4882a593Smuzhiyun# erofs-utils 4*4882a593Smuzhiyun# 5*4882a593Smuzhiyun################################################################################ 6*4882a593Smuzhiyun 7*4882a593SmuzhiyunEROFS_UTILS_VERSION = 1.3 8*4882a593SmuzhiyunEROFS_UTILS_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot 9*4882a593SmuzhiyunEROFS_UTILS_LICENSE = GPL-2.0+ 10*4882a593SmuzhiyunEROFS_UTILS_LICENSE_FILES = COPYING 11*4882a593Smuzhiyun 12*4882a593Smuzhiyun# From a git tree: no generated autotools files 13*4882a593SmuzhiyunEROFS_UTILS_AUTORECONF = YES 14*4882a593Smuzhiyun 15*4882a593SmuzhiyunEROFS_UTILS_DEPENDENCIES = host-pkgconf util-linux 16*4882a593Smuzhiyun 17*4882a593Smuzhiyunifeq ($(BR2_PACKAGE_EROFS_UTILS_LZ4),y) 18*4882a593SmuzhiyunEROFS_UTILS_DEPENDENCIES += lz4 19*4882a593SmuzhiyunEROFS_UTILS_CONF_OPTS += --enable-lz4 20*4882a593Smuzhiyunelse 21*4882a593SmuzhiyunEROFS_UTILS_CONF_OPTS += --disable-lz4 22*4882a593Smuzhiyunendif 23*4882a593Smuzhiyun 24*4882a593Smuzhiyunifeq ($(BR2_PACKAGE_LIBSELINUX),y) 25*4882a593SmuzhiyunEROFS_UTILS_CONF_OPTS += --with-selinux 26*4882a593SmuzhiyunEROFS_UTILS_DEPENDENCIES += libselinux 27*4882a593Smuzhiyunelse 28*4882a593SmuzhiyunEROFS_UTILS_CONF_OPTS += --without-selinux 29*4882a593Smuzhiyunendif 30*4882a593Smuzhiyun 31*4882a593Smuzhiyunifeq ($(BR2_PACKAGE_EROFS_UTILS_EROFSFUSE),y) 32*4882a593SmuzhiyunEROFS_UTILS_CONF_OPTS += --enable-fuse 33*4882a593SmuzhiyunEROFS_UTILS_DEPENDENCIES += libfuse 34*4882a593Smuzhiyunelse 35*4882a593SmuzhiyunEROFS_UTILS_CONF_OPTS += --disable-fuse 36*4882a593Smuzhiyunendif 37*4882a593Smuzhiyun 38*4882a593SmuzhiyunHOST_EROFS_UTILS_DEPENDENCIES = host-pkgconf host-util-linux host-lz4 39*4882a593SmuzhiyunHOST_EROFS_UTILS_CONF_OPTS += --enable-lz4 --disable-fuse --without-selinux 40*4882a593Smuzhiyun 41*4882a593Smuzhiyun$(eval $(autotools-package)) 42*4882a593Smuzhiyun$(eval $(host-autotools-package)) 43