Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_TINYXML2
bool "tinyxml2"
depends on BR2_INSTALL_LIBSTDCPP
help
TinyXML-2 is a simple, small, efficient, C++ XML parser that
can be easily integrating into other programs.
http://www.grinninglizard.com/tinyxml2/index.html
comment "tinyxml2 needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 14b38ef25cc136d71339ceeafb4856bb638d486614103453eccd323849267f20 tinyxml2-4.0.1.tar.gz

View File

@@ -0,0 +1,17 @@
################################################################################
#
# tinyxml2
#
################################################################################
TINYXML2_VERSION = 4.0.1
TINYXML2_SITE = $(call github,leethomason,tinyxml2,$(TINYXML2_VERSION))
TINYXML2_LICENSE = Zlib
TINYXML2_LICENSE_FILES = readme.md
TINYXML2_INSTALL_STAGING = YES
ifeq ($(BR2_STATIC_LIBS),y)
TINYXML2_CONF_OPTS += -DBUILD_STATIC_LIBS=ON
endif
$(eval $(cmake-package))