Files
buildroot/package/fmt/fmt.mk
Michael Nosthoff cc5c36afff package/fmt: bump to version 12.2.0
changelog:
https://github.com/fmtlib/fmt/releases/tag/12.2.0

LICENSE hash changed due to split-out of exceptions:
91d1aced0a

Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
Signed-off-by: Julien Olivain <ju.o@free.fr>
2026-07-05 18:39:10 +02:00

24 lines
581 B
Makefile

################################################################################
#
# fmt
#
################################################################################
FMT_VERSION = 12.2.0
FMT_SITE = https://github.com/fmtlib/fmt/releases/download/$(FMT_VERSION)
FMT_SOURCE = fmt-$(FMT_VERSION).zip
FMT_LICENSE = MIT with exception
FMT_LICENSE_FILES = LICENSE
FMT_CPE_ID_VENDOR = fmt
FMT_INSTALL_STAGING = YES
FMT_CONF_OPTS = \
-DFMT_INSTALL=ON \
-DFMT_TEST=OFF
define FMT_EXTRACT_CMDS
$(UNZIP) -d $(BUILD_DIR) $(FMT_DL_DIR)/$(FMT_SOURCE)
endef
$(eval $(cmake-package))