initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_XXHASH
|
||||
bool "xxhash"
|
||||
help
|
||||
xxHash is an extremely fast hash algorithm, running at RAM
|
||||
speed limits.
|
||||
|
||||
https://github.com/Cyan4973/xxHash
|
||||
@@ -0,0 +1,3 @@
|
||||
# locally computed
|
||||
sha256 7054c3ebd169c97b64a92d7b994ab63c70dd53a06974f1f630ab782c28db0f4f xxhash-0.8.0.tar.gz
|
||||
sha256 9da63520e9293d82c4b1613be5c84058cadb82b02f5972179bad13731d589910 LICENSE
|
||||
@@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
#
|
||||
# xxhash
|
||||
#
|
||||
################################################################################
|
||||
|
||||
XXHASH_VERSION = 0.8.0
|
||||
XXHASH_SITE = $(call github,Cyan4973,xxHash,v$(XXHASH_VERSION))
|
||||
XXHASH_LICENSE = BSD-2-Clause (library), GPL-2.0+ (xxhsum)
|
||||
XXHASH_LICENSE_FILES = LICENSE
|
||||
|
||||
define XXHASH_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) xxhsum
|
||||
endef
|
||||
|
||||
define XXHASH_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 -D $(@D)/xxhsum $(TARGET_DIR)/usr/bin/xxhsum
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user