fcb2a4649d
Change the hash of the license: - Copyright message changed from 'present' to 2020 - Link to BSD 2-Clause License changed from http to https Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
588 B
Makefile
21 lines
588 B
Makefile
################################################################################
|
|
#
|
|
# xxhash
|
|
#
|
|
################################################################################
|
|
|
|
XXHASH_VERSION = 0.7.4
|
|
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))
|