mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Changelog: https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/tree/doc/CHANGES?h=v6.19.0 Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# xfsprogs
|
|
#
|
|
################################################################################
|
|
|
|
XFSPROGS_VERSION = 6.19.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 = inih liburcu 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
|
|
|
|
HOST_XFSPROGS_DEPENDENCIES = host-inih host-liburcu host-util-linux
|
|
HOST_XFSPROGS_CONF_OPTS = \
|
|
--enable-gettext=no \
|
|
--enable-lib64=no \
|
|
--enable-libicu=no \
|
|
--enable-static
|
|
|
|
ifeq ($(BR2_PACKAGE_ICU),y)
|
|
XFSPROGS_DEPENDENCIES += icu
|
|
XFSPROGS_CONF_OPTS += --enable-libicu
|
|
else
|
|
XFSPROGS_CONF_OPTS += --disable-libicu
|
|
endif
|
|
|
|
ifeq ($(BR2_OPTIMIZE_0),y)
|
|
XFSPROGS_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -O1"
|
|
endif
|
|
|
|
XFSPROGS_INSTALL_TARGET_OPTS = DIST_ROOT=$(TARGET_DIR) install
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|