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>
14 lines
473 B
Makefile
14 lines
473 B
Makefile
################################################################################
|
|
#
|
|
# nginx-upload
|
|
#
|
|
################################################################################
|
|
|
|
NGINX_UPLOAD_VERSION = aba1e3f34c754551f4f49e572bc86863d535609d
|
|
NGINX_UPLOAD_SITE = $(call github,vkholodkov,nginx-upload-module,$(NGINX_UPLOAD_VERSION))
|
|
NGINX_UPLOAD_LICENSE = BSD-3-Clause
|
|
NGINX_UPLOAD_LICENSE_FILES = LICENCE
|
|
NGINX_UPLOAD_DEPENDENCIES = openssl
|
|
|
|
$(eval $(generic-package))
|