mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 23:43:34 +08:00
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>
22 lines
619 B
Makefile
22 lines
619 B
Makefile
################################################################################
|
|
#
|
|
# lapack
|
|
#
|
|
################################################################################
|
|
|
|
LAPACK_VERSION = 3.6.1
|
|
LAPACK_SOURCE = lapack-$(LAPACK_VERSION).tgz
|
|
LAPACK_LICENSE = BSD-3-Clause
|
|
LAPACK_LICENSE_FILES = LICENSE
|
|
LAPACK_SITE = http://www.netlib.org/lapack
|
|
LAPACK_INSTALL_STAGING = YES
|
|
LAPACK_CONF_OPTS = -DLAPACKE=ON -DCBLAS=ON
|
|
|
|
ifeq ($(BR2_PACKAGE_LAPACK_COMPLEX),y)
|
|
LAPACK_CONF_OPTS += -DBUILD_COMPLEX=ON -DBUILD_COMPLEX16=ON
|
|
else
|
|
LAPACK_CONF_OPTS += -DBUILD_COMPLEX=OFF -DBUILD_COMPLEX16=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|