Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_FMT
bool "fmt"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_WCHAR
help
fmt is an open-source formatting library for C++. It can be
used as a safe alternative to printf or as a fast alternative
to IOStreams.
comment "fmt needs a toolchain w/ C++, wchar"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 35300a0d356529447a79ed5ccf419239d8b34f916e5d4625f046fd37afa3650a fmt-4.0.0.tar.gz

View File

@@ -0,0 +1,18 @@
################################################################################
#
# fmt
#
################################################################################
FMT_VERSION = 4.0.0
FMT_SITE = $(call github,fmtlib,fmt,$(FMT_VERSION))
FMT_LICENSE = BSD-2-Clause
FMT_LICENSE_FILES = LICENSE.rst
FMT_INSTALL_STAGING = YES
FMT_CONF_OPTS = \
-DHAVE_OPEN=ON \
-DFMT_INSTALL=ON \
-DFMT_TEST=OFF
$(eval $(cmake-package))