kumquat-buildroot/package/fmt/fmt.mk
Fabrice Fontaine 32c10f256b package/fmt: add FMT_CPE_ID_VENDOR
cpe:2.3🅰️fmt:fmt is a valid CPE identifier for this package:

  https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Afmt%3Afmt

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2021-04-20 21:24:58 +02:00

24 lines
585 B
Makefile

################################################################################
#
# fmt
#
################################################################################
FMT_VERSION = 7.1.3
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))