28 lines
859 B
BlitzBasic
28 lines
859 B
BlitzBasic
SUMMARY = "Extremely fast non-cryptographic hash algorithm"
|
|
DESCRIPTION = "xxHash is an extremely fast non-cryptographic hash algorithm, \
|
|
working at speeds close to RAM limits."
|
|
HOMEPAGE = "http://www.xxhash.com/"
|
|
LICENSE = "BSD-2-Clause & GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=cdfe7764d5685d8e08b3df302885d7f3 \
|
|
file://cli/COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
"
|
|
|
|
SRC_URI = "git://github.com/Cyan4973/xxHash.git;branch=release;protocol=https"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
|
|
|
|
SRCREV = "35b0373c697b5f160d3db26b1cbb45a0d5ba788c"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
CFLAGS += "${@bb.utils.contains('SELECTED_OPTIMIZATION', '-Og', '-DXXH_NO_INLINE_HINTS', '', d)}"
|
|
|
|
do_compile () {
|
|
oe_runmake all
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake DESTDIR=${D} install
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|