From: "Franklin S. Cooper Jr" <[email protected]> Signed-off-by: Franklin S. Cooper Jr <[email protected]> --- .../recipes-benchmark/stream/stream_git.bb | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta-arago-extras/recipes-benchmark/stream/stream_git.bb
diff --git a/meta-arago-extras/recipes-benchmark/stream/stream_git.bb b/meta-arago-extras/recipes-benchmark/stream/stream_git.bb new file mode 100644 index 0000000..56be33f --- /dev/null +++ b/meta-arago-extras/recipes-benchmark/stream/stream_git.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "Stream Benchmark" +HOMEPAGE = "http://www.cs.virginia.edu/stream/" +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=bca8cbe07976fe64c8946378d08314b0" +SECTION = "system" + +PR = "r0" + +BRANCH ?= "master" +SRCREV = "bd474633b7b0352211b48d84065bf7b7e166e4c2" + +SRC_URI = "git://git.ti.com/sitara-linux/stream.git;branch=${BRANCH}" + +S = "${WORKDIR}/git" +do_compile() { + # build the release version + oe_runmake stream_linux +} +do_install() { + install -d ${D}/${bindir} + install -m 0755 ${S}/stream_c ${D}/${bindir}/ +} + -- 1.7.9.5 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
