7270f114b0
The current version of Eigen in Buildroot is 3.2.0 which was released in 2013. Eigen is an active project with too many important changes to begin to list in a bump commit message. See the project's published changelog for details: http://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.2.5 Signed-off-by: Jonathan Ben Avraham <yba@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# eigen
|
|
#
|
|
################################################################################
|
|
|
|
# version 3.2.5
|
|
EIGEN_VERSION = 175a47a35f0c
|
|
EIGEN_SITE = https://bitbucket.org/eigen/eigen
|
|
EIGEN_SITE_METHOD = hg
|
|
EIGEN_LICENSE = MPL2, BSD-3c, LGPLv2.1
|
|
EIGEN_LICENSE_FILES = COPYING.MPL2 COPYING.BSD COPYING.LGPL COPYING.README
|
|
EIGEN_INSTALL_STAGING = YES
|
|
EIGEN_INSTALL_TARGET = NO
|
|
EIGEN_DEST_DIR = $(STAGING_DIR)/usr/include/eigen3
|
|
|
|
ifeq ($(BR2_PACKAGE_EIGEN_UNSUPPORTED_MODULES),y)
|
|
define EIGEN_INSTALL_UNSUPPORTED_MODULES_CMDS
|
|
mkdir -p $(EIGEN_DEST_DIR)/unsupported
|
|
cp -a $(@D)/unsupported/Eigen $(EIGEN_DEST_DIR)/unsupported
|
|
endef
|
|
endif
|
|
|
|
# This package only consists of headers that need to be
|
|
# copied over to the sysroot for compile time use
|
|
define EIGEN_INSTALL_STAGING_CMDS
|
|
$(RM) -r $(EIGEN_DEST_DIR)
|
|
mkdir -p $(EIGEN_DEST_DIR)
|
|
cp -a $(@D)/Eigen $(EIGEN_DEST_DIR)
|
|
$(EIGEN_INSTALL_UNSUPPORTED_MODULES_CMDS)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|