hc
2024-08-19 eb6b9ee90f50f13c5abb885ce483802d6262f2b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
################################################################################
#
# fmt
#
################################################################################
 
FMT_VERSION = 8.0.1
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))