mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: c/CGAL/CGAL-4.11.1-intel-2020a.eb new file: c/CGAL/CGAL-5.0.2-intel-2020a.eb new file: d/DOLFIN/DOLFIN-2019.1.0-intel-2020a-Py-3.7.eb new file: f/FFC/FFC-2019.1.0-conda.eb new file: m/MATIO/MATIO-1.5.12-intel-2020a.eb new file: m/mshr/mshr-2019.1.0-conda.eb modified: o/OpenMPI/OpenMPI-1.10.7-GCC-6.3.0-2.27-noPBS.eb new file: o/OpenMPI/OpenMPI-3.1.6-GCCcore-8.3.0-noPBS.eb new file: s/SLEPc/SLEPc-3.13.3-intel-2020a.eb new file: s/SLEPc/SLEPc-3.9.2-intel-2020a.eb new file: t/Trilinos/Trilinos-12.12.1-intel-2020a-Py-3.7.eb
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
# IT4Innovations 2020
|
|
# LK
|
|
|
|
name = 'CGAL'
|
|
version = '4.11.1'
|
|
|
|
homepage = 'http://www.cgal.org/'
|
|
description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
|
|
and reliable geometric algorithms in the form of a C++ library."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2020a'}
|
|
toolchainopts = {'strict': True}
|
|
|
|
source_urls = ['https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-%(version)s']
|
|
sources = [SOURCE_TAR_XZ]
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11', '', True),
|
|
('Boost', '1.72.0', '-Py-3.7'),
|
|
('MPFR', '4.0.1', '' , True),
|
|
('GMP', '6.1.2', '', True),
|
|
('Mesa', '19.2.1', '', ('GCCcore', '8.3.0')),
|
|
('libGLU', '9.0.1', '-Mesa-19.2.1', ('GCCcore', '8.3.0')),
|
|
('Qt5', '5.13.1', '', ('GCCcore', '8.3.0')),
|
|
]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.16.2', '', True),
|
|
('Eigen', '3.3.7', '', True),
|
|
]
|
|
|
|
configopts = "-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include "
|
|
configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT
|
|
configopts += "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT
|
|
configopts += "-DWITH_ZLIB=ON -DWITH_MPFR=ON -DWITH_OpenGL=ON -DWITH_Eigen3=ON "
|
|
configopts += "-DWITH_GMPXX=ON -DWITH_LAPACK=ON -DWITH_BLAS=ON "
|
|
|
|
moduleclass = 'numlib'
|