05d8bca6a4
- Update hash of GPL-2.0 file because spdx tags have been updated by https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/commit/?id=c7498b6911d03f2bd7f74e9f9862d8d5fbd5b5da - Drop third patch (already in version) - Update indentation in hash file (two spaces) Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
946 B
Makefile
33 lines
946 B
Makefile
################################################################################
|
|
#
|
|
# xfsprogs
|
|
#
|
|
################################################################################
|
|
|
|
XFSPROGS_VERSION = 5.8.0
|
|
XFSPROGS_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/fs/xfs/xfsprogs
|
|
XFSPROGS_SOURCE = xfsprogs-$(XFSPROGS_VERSION).tar.xz
|
|
XFSPROGS_LICENSE = GPL-2.0, GPL-2.0+, LGPL-2.1 (libhandle, few headers)
|
|
XFSPROGS_LICENSE_FILES = LICENSES/GPL-2.0 LICENSES/LGPL-2.1
|
|
|
|
XFSPROGS_DEPENDENCIES = util-linux
|
|
|
|
XFSPROGS_CONF_ENV = ac_cv_header_aio_h=yes ac_cv_lib_rt_lio_listio=yes PLATFORM="linux"
|
|
XFSPROGS_CONF_OPTS = \
|
|
--enable-lib64=no \
|
|
--enable-gettext=no \
|
|
INSTALL_USER=root \
|
|
INSTALL_GROUP=root \
|
|
--enable-static
|
|
|
|
ifeq ($(BR2_PACKAGE_ICU),y)
|
|
XFSPROGS_DEPENDENCIES += icu
|
|
XFSPROGS_CONF_OPTS += --enable-libicu
|
|
else
|
|
XFSPROGS_CONF_OPTS += --disable-libicu
|
|
endif
|
|
|
|
XFSPROGS_INSTALL_TARGET_OPTS = DIST_ROOT=$(TARGET_DIR) install
|
|
|
|
$(eval $(autotools-package))
|