96e9480fbc
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-2c is BSD-2-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-2c/BSD-2-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
575 B
Makefile
21 lines
575 B
Makefile
################################################################################
|
|
#
|
|
# xxhash
|
|
#
|
|
################################################################################
|
|
|
|
XXHASH_VERSION = r40
|
|
XXHASH_SITE = $(call github,Cyan4973,xxHash,$(XXHASH_VERSION))
|
|
XXHASH_LICENSE = BSD-2-Clause, GPL-2.0+
|
|
XXHASH_LICENSE_FILES = LICENSE xxhsum.c
|
|
|
|
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))
|