tinyxml: new package

Tiny XML Parser.
This package was originally found at : https://github.com/huceke/buildroot-rbp
By gimli <ebsi4711@gmail.com>

[Peter: add _LICENSE_FILES]
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: gimli <ebsi4711@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Maxime Hadjinlian 2014-01-19 22:04:03 +01:00 committed by Peter Korsgaard
parent ac37a9b42f
commit 7677a7542e
3 changed files with 28 additions and 0 deletions

View file

@ -624,6 +624,7 @@ source "package/libxslt/Config.in"
source "package/libyaml/Config.in"
source "package/mxml/Config.in"
source "package/rapidjson/Config.in"
source "package/tinyxml/Config.in"
source "package/xerces/Config.in"
source "package/yajl/Config.in"
endmenu

11
package/tinyxml/Config.in Normal file
View file

@ -0,0 +1,11 @@
config BR2_PACKAGE_TINYXML
bool "tinyxml"
depends on BR2_INSTALL_LIBSTDCPP
help
TinyXML is a simple, small, C++ XML parser that can be
easily integrating into other programs.
https://github.com/leethomason/tinyxml2
comment "tinyxml needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View file

@ -0,0 +1,16 @@
################################################################################
#
# tinyxml
#
################################################################################
TINYXML_VERSION = 2.6.2_2
TINYXML_SITE = http://mirrors.xbmc.org/build-deps/sources
# AUTORECONF is needed because the XBMC's version of TinyXML contains a
# configure.ac which is not present in mainline.
TINYXML_AUTORECONF = YES
TINYXML_INSTALL_STAGING = YES
TINYXML_LICENSE = zlib
TINYXML_LICENSE_FILES = README
$(eval $(autotools-package))