Files
openwrt/tools/xxhash/Makefile
Petr Štetiar 8c030a3b13 tools: xxhash: fix PKG_MIRROR_HASH
Current PKG_MIRROR_HASH is wrong, but it went unnoticed, because the
tarball is being fetched from @OPENWRT project mirrors. After
042996b46b revert the correct hash can be reproduced with:

 make tools/xxhash/{download,check} FIXUP=1 DL_DIR=/tmp PKG_MIRROR_HASH=''

Signed-off-by: Petr Štetiar <ynezz@true.cz>
Link: https://github.com/openwrt/openwrt/pull/20322
Signed-off-by: Robert Marko <robimarko@gmail.com>
2025-10-09 13:37:58 +02:00

26 lines
603 B
Makefile

# SPDX-License-Identifier: GPL-2.0-only
include $(TOPDIR)/rules.mk
PKG_NAME:=xxHash
PKG_VERSION:=0.8.3
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL=https://github.com/Cyan4973/xxHash
PKG_MIRROR_HASH:=69f3e49799db17894a5e4c5e10d3de59f12a8c454e7b6a1ba9d0cf16d9a34515
PKG_SOURCE_VERSION:=e626a72bc2321cd320e953a0ccf1584cad60f363
PKG_LICENSE:=BSD-2-Clause
PKG_LICENSE_FILES:=LICENSE
include $(INCLUDE_DIR)/host-build.mk
include $(INCLUDE_DIR)/cmake.mk
CMAKE_C_COMPILER_LAUNCHER :=
CMAKE_CXX_COMPILER_LAUNCHER :=
CMAKE_BINARY_SUBDIR := build
CMAKE_SOURCE_SUBDIR := cmake_unofficial
$(eval $(call HostBuild))