diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/mbw/mbw_1.1.bb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/mbw/mbw_1.1.bb b/packages/mbw/mbw_1.1.bb new file mode 100644 index 0000000000..31ba432431 --- /dev/null +++ b/packages/mbw/mbw_1.1.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "Memory bandwidth benchmark" +AUTHOR = "Andras Horvath <Andras.Horvath@cern.ch>" + +SRC_URI = "http://ahorvath.web.cern.ch/ahorvath/mbw/mbw-${PV}-1.tar.gz" + +S = "${WORKDIR}/mbw/" + +inherit autotools + +do_install() { + install -d ${D}${bindir} ${D}${mandir} + install -m 755 mbw ${D}${bindir} + install -m 644 mbw.1 ${D}${mandir}/man1/ +} |