0d219fd34f
Changelog: https://github.com/fmtlib/fmt/blob/master/ChangeLog.rst
Updated license hash due to upstream commit, no legal changes:
48dfbcaa95
This patch depends on bumping spdlog to version 1.12.0.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
585 B
Makefile
24 lines
585 B
Makefile
################################################################################
|
|
#
|
|
# fmt
|
|
#
|
|
################################################################################
|
|
|
|
FMT_VERSION = 10.0.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.rst
|
|
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))
|