blob: 6e74e49bf095873fb7684995b377ddc671f624ce [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001SUMMARY = "Extremely fast non-cryptographic hash algorithm"
2DESCRIPTION = "xxHash is an extremely fast non-cryptographic hash algorithm, \
3working at speeds close to RAM limits."
4HOMEPAGE = "http://www.xxhash.com/"
5LICENSE = "BSD-2-Clause & GPL-2.0"
Andrew Geisslerd221e032020-07-10 16:13:21 -05006LIC_FILES_CHKSUM = "file://LICENSE;md5=b335320506abb0505437e39295e799cb"
Andrew Geissler82c905d2020-04-13 13:39:40 -05007
8SRC_URI = "git://github.com/Cyan4973/xxHash.git"
9UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
10
Andrew Geisslerd221e032020-07-10 16:13:21 -050011SRCREV = "173e50be0509c6fb6c1bb74d95049ef61d7fdced"
Andrew Geissler82c905d2020-04-13 13:39:40 -050012
13S = "${WORKDIR}/git"
14
15do_compile () {
16 oe_runmake all
17}
18
19do_install () {
20 oe_runmake DESTDIR=${D} install
21}