Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions utils/xxhash/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=xxhash
PKG_VERSION:=0.8.3
PKG_VERSION:=0.8.4
PKG_RELEASE:=1

PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
PKG_SOURCE_URL:=https://github.com/Cyan4973/xxHash
PKG_MIRROR_HASH:=573f8b8ca3b6c2be412f4b68ee0a82f43c32f59607981a8b68f9c8985d979fe1
PKG_MIRROR_HASH:=4265c80d0ba3ec3aeb866572048cb77457ca3bcb61dec8ba1fe53814650fa6d4

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit (optional, not a blocker): xxHash ships release tarballs for every tag, so PKG_SOURCE_PROTO:=git + PKG_MIRROR_HASH above is avoidable here — the feed convention is a codeload.github.com/.../tar.gz/v$(PKG_VERSION)? source with PKG_HASH. Worth folding into this bump since these lines are being touched anyway.


Generated by Claude Code


# The source for the library (xxhash.c and xxhash.h) is BSD
# The source for the command line tool (xxhsum.c) is GPLv2+
PKG_LICENSE:=BSD-2-Clause GPL-2.0-or-later
PKG_LICENSE_FILES:=LICENSE cli/COPYING
PKG_MAINTAINER:=Julien Malik <julien.malik@paraiso.me>

CMAKE_SOURCE_SUBDIR:=cmake_unofficial
CMAKE_SOURCE_SUBDIR:=build/cmake

include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
Expand Down
Loading