mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
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>
15 lines
446 B
Makefile
15 lines
446 B
Makefile
################################################################################
|
|
#
|
|
# libuecc
|
|
#
|
|
################################################################################
|
|
|
|
LIBUECC_VERSION = 7
|
|
LIBUECC_SITE = https://projects.universe-factory.net/attachments/download/85
|
|
LIBUECC_SOURCE = libuecc-$(LIBUECC_VERSION).tar.xz
|
|
LIBUECC_LICENSE = BSD-2-Clause
|
|
LIBUECC_LICENSE_FILES = COPYRIGHT
|
|
LIBUECC_INSTALL_STAGING = YES
|
|
|
|
$(eval $(cmake-package))
|