30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
613 B
Makefile
17 lines
613 B
Makefile
################################################################################
|
|
#
|
|
# numactl
|
|
#
|
|
################################################################################
|
|
|
|
NUMACTL_VERSION = 2.0.11
|
|
NUMACTL_SITE = ftp://oss.sgi.com/www/projects/libnuma/download
|
|
NUMACTL_PATCH = \
|
|
https://github.com/numactl/numactl/commit/3770bdc4fa7b9059db5cd2aa8bb09b50fa15e456.patch \
|
|
https://github.com/numactl/numactl/commit/31dc2951c758698bff060aeae8ffd8854616183b.patch
|
|
NUMACTL_LICENSE = LGPL-2.1 (libnuma), GPL-2.0 (programs)
|
|
NUMACTL_LICENSE_FILES = README
|
|
NUMACTL_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|