From b8f6712bd98569df432d4e8eeb34a4182902a5b5 Mon Sep 17 00:00:00 2001 From: Linus Svensson Date: Thu, 16 Feb 2017 12:53:58 +0100 Subject: [PATCH] meson: Add recipe for the meson build system Meson is a build system designed to be fast and as user firendly as possible. Find out more about meson at mesonbuild.com. This patch is based on a prototype patch by Ross Burton . Signed-off-by: Linus Svensson Signed-off-by: Martin Jansa --- meta-oe/recipes-devtools/meson/meson_0.36.0.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 meta-oe/recipes-devtools/meson/meson_0.36.0.bb diff --git a/meta-oe/recipes-devtools/meson/meson_0.36.0.bb b/meta-oe/recipes-devtools/meson/meson_0.36.0.bb new file mode 100644 index 0000000000..9349fcbbc0 --- /dev/null +++ b/meta-oe/recipes-devtools/meson/meson_0.36.0.bb @@ -0,0 +1,18 @@ +HOMEPAGE = "http://mesonbuild.com" +SUMMARY = "A high performance build system" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://COPYING;md5=3b83ef96387f14655fc854ddc3c6bd57" + +SRC_URI = "git://github.com/mesonbuild/meson.git" + +SRCREV = "4e3073f90a7b4f225ce7d89034d61cd978399eba" +PV = "0.36.0" + +S = "${WORKDIR}/git" + +inherit setuptools3 + +RDEPENDS_${PN} = "ninja python3-core python3-modules" + +BBCLASSEXTEND = "native"