From c8992dc7710c23b731a170a175c9e2bc946e907c Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Fri, 23 Jul 2021 15:05:26 +0200 Subject: [PATCH] mbw: add new recipe The last release/tag is 1.4 but it's from 2014. So use current head for now. Signed-off-by: Nicolas Dechesne Signed-off-by: Khem Raj --- meta-oe/recipes-benchmark/mbw/mbw_git.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 meta-oe/recipes-benchmark/mbw/mbw_git.bb diff --git a/meta-oe/recipes-benchmark/mbw/mbw_git.bb b/meta-oe/recipes-benchmark/mbw/mbw_git.bb new file mode 100644 index 0000000000..5ed726d9b7 --- /dev/null +++ b/meta-oe/recipes-benchmark/mbw/mbw_git.bb @@ -0,0 +1,18 @@ +SUMMARY = "MBW determines the copy memory bandwidth available to userspace programs" +HOMEPAGE = "http://github.com/raas/mbw" +SECTION = "console/tests" +LICENSE = "LGPLv2.1" +LIC_FILES_CHKSUM = "file://mbw.spec;beginline=1;endline=10;md5=bbb77813272134a5c461f71abe945bef" + +SRC_URI = "git://github.com/raas/${BPN}.git" + +SRCREV = "2a15026ff65160127204881263464b1740a57198" + +PV = "1.4+git${SRCPV}" + +S = "${WORKDIR}/git" + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${B}/mbw ${D}${bindir} +}