fa6a965c5e
python-numpy can be linked with libblas and liblapack, so automatically do it when clapack is enabled. [Thomas: - Fix issues in the original submission and reformat according to Yann E. Morin suggestions. - Properly format the "libraries" entry in site.cfg as outlined in the example site.cfg file: the list of libraries should be space-separated.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# python-numpy
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_NUMPY_VERSION = 1.8.0
|
|
PYTHON_NUMPY_SOURCE = numpy-$(PYTHON_NUMPY_VERSION).tar.gz
|
|
PYTHON_NUMPY_SITE = http://downloads.sourceforge.net/numpy
|
|
PYTHON_NUMPY_LICENSE = BSD-3c
|
|
PYTHON_NUMPY_LICENSE_FILES = LICENSE.txt
|
|
PYTHON_NUMPY_SETUP_TYPE = distutils
|
|
|
|
ifeq ($(BR2_PACKAGE_CLAPACK),y)
|
|
PYTHON_NUMPY_DEPENDENCIES += clapack
|
|
PYTHON_NUMPY_SITE_CFG_LIBS += blas lapack
|
|
endif
|
|
|
|
PYTHON_NUMPY_BUILD_OPT = --fcompiler=None
|
|
|
|
define PYTHON_NUMPY_CONFIGURE_CMDS
|
|
-rm -f $(@D)/site.cfg
|
|
echo "[DEFAULT]" >> $(@D)/site.cfg
|
|
echo "library_dirs = $(STAGING_DIR)/usr/lib" >> $(@D)/site.cfg
|
|
echo "include_dirs = $(STAGING_DIR)/usr/include" >> $(@D)/site.cfg
|
|
echo "libraries =" $(subst $(space),$(comma),$(PYTHON_NUMPY_SITE_CFG_LIBS)) >> $(@D)/site.cfg
|
|
endef
|
|
|
|
# Some package may include few headers from NumPy, so let's install it
|
|
# in the staging area.
|
|
PYTHON_NUMPY_INSTALL_STAGING = YES
|
|
|
|
$(eval $(python-package))
|