9f59b378a3
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
583 B
Makefile
20 lines
583 B
Makefile
################################################################################
|
|
#
|
|
# socketcand
|
|
#
|
|
################################################################################
|
|
|
|
SOCKETCAND_VERSION = df7fb4ff8a4439d7737fe2df3540e1ab7465721a
|
|
SOCKETCAND_SITE = $(call github,dschanoeh,socketcand,$(SOCKETCAND_VERSION))
|
|
SOCKETCAND_AUTORECONF = YES
|
|
SOCKETCAND_LICENSE = BSD-3-Clause or GPL-2.0
|
|
SOCKETCAND_LICENSE_FILES = socketcand.c
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCONFIG),y)
|
|
SOCKETCAND_DEPENDENCIES = libconfig
|
|
else
|
|
SOCKETCAND_CONF_OPTS = --without-config
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|