From 93669f08c4441744204084de1b8ebec4c2a27627 Mon Sep 17 00:00:00 2001 From: Lukas Bulwahn Date: Fri, 19 Jul 2013 11:03:50 +0200 Subject: [PATCH] yaml-cpp: incorporated recipe from Kartik Mohta's repository This commit adds the yaml-cpp recipe from the repository at https://github.com/kartikmohta/meta-km. The file is licensed with the MIT license (cf. https://github.com/kartikmohta/meta-km/blob/master/LICENSE). The original recipe can be found at https://github.com/kartikmohta/meta-km/blob/master/recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb The README file acknowledges Kartik Mohta's contribution and names him as a contributor. --- README | 3 +++ recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb diff --git a/README b/README index 3ef2548..2c4cf17 100644 --- a/README +++ b/README @@ -98,6 +98,9 @@ REDISTRIBUTIONS The eigen recipe originated from the recipe in Kartik Mohta's OpenEmbedded layer (cf. https://github.com/kartikmohta/meta-km/tree/master/recipes-extended/eigen) licensed with the MIT License. + The yaml-cpp recipe originated from the recipe in Kartik Mohta's OpenEmbedded layer + (cf. https://github.com/kartikmohta/meta-km/blob/master/recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb) + licensed with the MIT License. The core-image-ros-* recipes originated from the core-image-minimal recipe in OpenEmbedded Core (cf. http://cgit.openembedded.org/openembedded-core/tree/meta/recipes-core/images/core-image-minimal.bb) licensed with the MIT License. diff --git a/recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb b/recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb new file mode 100644 index 0000000..f87fb51 --- /dev/null +++ b/recipes-devtools/yaml-cpp/yaml-cpp_0.3.0.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec" +HOMEPAGE = "http://code.google.com/p/yaml-cpp/" +SECTION = "libs" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://license.txt;md5=7c6a629da965ebdfba9f6fdb76ab8ab4" + +PR = "r0" + +S = "${WORKDIR}/${PN}" + +SRC_URI = "http://yaml-cpp.googlecode.com/files/yaml-cpp-${PV}.tar.gz" + +SRC_URI[md5sum] = "9aa519205a543f9372bf4179071c8ac6" +SRC_URI[sha256sum] = "2cd038b5a1583b6745e949e196fba525f6d0d5fd340566585fde24fc7e117b82" + +EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON" + +inherit cmake