yaml-cpp: new package

yaml-cpp is a YAML parser and emitter in C++ matching
the YAML 1.2 spec.

https://code.google.com/p/yaml-cpp/

Signed-off-by: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Sebastien Bourdelin 2014-10-20 11:11:18 -04:00 committed by Thomas Petazzoni
parent 2f04a4ad6c
commit 9a2d5f9297
4 changed files with 33 additions and 0 deletions

View File

@ -737,6 +737,7 @@ menu "JSON/XML"
source "package/tinyxml/Config.in"
source "package/xerces/Config.in"
source "package/yajl/Config.in"
source "package/yaml-cpp/Config.in"
endmenu
menu "Logging"

View File

@ -0,0 +1,14 @@
config BR2_PACKAGE_YAML_CPP
bool "yaml-cpp"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_LARGEFILE # boost
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
select BR2_PACKAGE_BOOST
help
yaml-cpp is a YAML parser and emitter in C++ matching
the YAML 1.2 spec.
https://code.google.com/p/yaml-cpp/
comment "yaml-cpp needs a toolchain w/ C++, largefile, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -0,0 +1,5 @@
# hash from: https://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.1.tar.gz:
sha1 9c5414b4090491e96d1b808fe8628b31e625fdaa yaml-cpp-0.5.1.tar.gz
# Locally calculated:
sha256 3e7c9052b43d987d41819a203d97fc45de4eed3ec67e0fdb14265c3d11046f06 yaml-cpp-0.5.1.tar.gz

View File

@ -0,0 +1,13 @@
################################################################################
#
# yaml-cpp
#
################################################################################
YAML_CPP_VERSION = 0.5.1
YAML_CPP_SITE = https://yaml-cpp.googlecode.com/files
YAML_CPP_INSTALL_STAGING = YES
YAML_CPP_LICENSE = MIT
YAML_CPP_LICENSE_FILES = license.txt
$(eval $(cmake-package))