diff options
| -rw-r--r-- | meta-oe/recipes-benchmark/linpack/linpack_1.0.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb new file mode 100644 index 0000000000..aed95cdaa4 --- /dev/null +++ b/meta-oe/recipes-benchmark/linpack/linpack_1.0.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | DESCRIPTION = "LINPACK Benchmarks are a measure of a system's floating point computing power" | ||
| 2 | SUMMARY = "LINPACK is a software library for performing numerical linear algebra on digital computers" | ||
| 3 | |||
| 4 | LICENSE = "PD" | ||
| 5 | LIC_FILES_CHKSUM ="file://${WORKDIR}/linpacknew.c;beginline=1;endline=23;md5=aa025e3bc44190c71e4c5e3b084fed87" | ||
| 6 | |||
| 7 | SRC_URI = "http://www.netlib.org/benchmark/linpackc.new;downloadfilename=linpacknew.c" | ||
| 8 | SRC_URI[md5sum] = "1c5d0b6a31264685d2e651c920e3cdf4" | ||
| 9 | SRC_URI[sha256sum] = "a63f2ec86512959f1fd926bfafb85905b2d7b7402942ffae3af374d48745e97e" | ||
| 10 | |||
| 11 | S = "${WORKDIR}" | ||
| 12 | |||
| 13 | do_compile () { | ||
| 14 | ${CC} ${CFLAGS} ${LDFLAGS} -o linpack linpacknew.c -lm | ||
| 15 | } | ||
| 16 | |||
| 17 | do_install () { | ||
| 18 | install -Dm 0755 linpack ${D}${bindir}/linpack | ||
| 19 | } | ||
| 20 | |||
