Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame^] | 1 | SUMMARY = "Extremely fast non-cryptographic hash algorithm" |
| 2 | DESCRIPTION = "xxHash is an extremely fast non-cryptographic hash algorithm, \ |
| 3 | working at speeds close to RAM limits." |
| 4 | HOMEPAGE = "http://www.xxhash.com/" |
| 5 | LICENSE = "BSD-2-Clause & GPL-2.0" |
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=01a7eba4212ef1e882777a38585e7a9b" |
| 7 | |
| 8 | SRC_URI = "git://github.com/Cyan4973/xxHash.git" |
| 9 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" |
| 10 | |
| 11 | SRCREV = "d408e9b0606d07b1ddc5452ffc0ec8512211b174" |
| 12 | |
| 13 | S = "${WORKDIR}/git" |
| 14 | |
| 15 | do_compile () { |
| 16 | oe_runmake all |
| 17 | } |
| 18 | |
| 19 | do_install () { |
| 20 | oe_runmake DESTDIR=${D} install |
| 21 | } |