mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-25 19:27:14 +00:00
8f3df8b447
- Automatically convert all licenses to valid SPDX license expressions using convert-spdx-licenses.py Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
31 lines
1.1 KiB
BlitzBasic
31 lines
1.1 KiB
BlitzBasic
SUMMARY = "A CPU benchmark utility"
|
|
DESCRIPTION = "BYTE Magazine's native benchmarks (also called BYTEmark) \
|
|
designed to expose the capabilities of a system's CPU, FPU, \
|
|
and memory system."
|
|
HOMEPAGE = "http://www.tux.org/~mayer/linux/"
|
|
LICENSE = "LicenseRef-nbench-byte"
|
|
LIC_FILES_CHKSUM = "file://README;beginline=57;endline=66;md5=020ef579f8fa5746b7e307a54707834f"
|
|
SECTION = "console/utils"
|
|
|
|
SRC_URI = "https://fossies.org/linux/misc/old/${BP}.tar.gz \
|
|
file://nbench_32bits.patch \
|
|
file://Makefile-add-more-dependencies-to-pointer.h.patch \
|
|
file://0001-Fix-build-error-with-gcc-15.patch \
|
|
file://Makefile-Fix-sysinfo-generation-in-parallel-build.patch \
|
|
file://sysinfo.sh-Fix-typo-in-rm-command.patch"
|
|
|
|
SRC_URI[sha256sum] = "723dd073f80e9969639eb577d2af4b540fc29716b6eafdac488d8f5aed9101ac"
|
|
|
|
EXTRA_OEMAKE = "-e MAKEFLAGS="
|
|
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0644 NNET.DAT ${D}${bindir}/
|
|
install -m 0755 nbench ${D}${bindir}/
|
|
}
|