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>
16 lines
521 B
Makefile
16 lines
521 B
Makefile
################################################################################
|
|
#
|
|
# libcoap
|
|
#
|
|
################################################################################
|
|
|
|
LIBCOAP_VERSION = c909bf802034b7762a2182848304b2530e58444f
|
|
LIBCOAP_SITE = $(call github,obgm,libcoap,$(LIBCOAP_VERSION))
|
|
LIBCOAP_INSTALL_STAGING = YES
|
|
LIBCOAP_LICENSE = GPL-2.0+ or BSD-2-Clause
|
|
LIBCOAP_LICENSE_FILES = COPYING LICENSE.GPL LICENSE.BSD
|
|
LIBCOAP_CONF_OPTS = --disable-examples
|
|
LIBCOAP_AUTORECONF = YES
|
|
|
|
$(eval $(autotools-package))
|