1SUMMARY = "A CPU benchmark utility" 2DESCRIPTION = "BYTE Magazine's native benchmarks (also called BYTEmark) \ 3designed to expose the capabilities of a system's CPU, FPU, \ 4and memory system." 5HOMEPAGE = "http://www.tux.org/~mayer/linux/" 6LICENSE = "nbench-byte" 7LIC_FILES_CHKSUM = "file://README;beginline=57;endline=66;md5=020ef579f8fa5746b7e307a54707834f" 8SECTION = "console/utils" 9 10SRC_URI = "https://fossies.org/linux/misc/old/${BP}.tar.gz \ 11 file://nbench_32bits.patch \ 12 file://Makefile-add-more-dependencies-to-pointer.h.patch" 13 14SRC_URI[md5sum] = "285dfab361080759d477ea1fe7d3093a" 15SRC_URI[sha256sum] = "723dd073f80e9969639eb577d2af4b540fc29716b6eafdac488d8f5aed9101ac" 16 17EXTRA_OEMAKE = "-e MAKEFLAGS=" 18 19TARGET_CC_ARCH += "${LDFLAGS}" 20do_compile() { 21 oe_runmake 22} 23 24do_install () { 25 install -d ${D}${bindir} 26 install -m 0644 NNET.DAT ${D}${bindir}/ 27 install -m 0755 nbench ${D}${bindir}/ 28} 29