Commit 9a2d5f92 authored by Sebastien Bourdelin's avatar Sebastien Bourdelin Committed by Thomas Petazzoni
Browse files

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: default avatarSebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
Reviewed-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 2f04a4ad
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"
+14 −0
Original line number Diff line number Diff line
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
+5 −0
Original line number Diff line number Diff line
# 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
+13 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))