mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 19:01:21 +01:00

modified: g/GLib/GLib-2.57.1.eb modified: l/libffi/libffi-3.2.1.eb new file: m/Mesa/Mesa-18.1.3-GCC-6.3.0-2.27.eb new file: n/nettle/nettle-3.3-GCC-6.3.0-2.27.eb modified: p/ParaView/ParaView-5.4.1-intel-2017a-mpi.eb modified: q/Qt5/Qt5-5.11.1-GCC-6.3.0-2.27.eb Former-commit-id: 7b0ec2df90fac8d51215991f3c27c77d3530c8d8
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
# IT4Innovations 2018
|
|
|
|
name = 'CGAL'
|
|
version = '4.12'
|
|
|
|
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': '2017a'}
|
|
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.63.0'),
|
|
('MPFR', '3.1.4'),
|
|
('GMP', '6.1.2', '', True),
|
|
('Mesa', '18.1.3', '', ('GCC', '6.3.0-2.27')),
|
|
('libGLU', '9.0.0', '', True),
|
|
('Qt5', '5.11.1', '', ('GCC', '6.3.0-2.27')),
|
|
]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.9.1', '', True),
|
|
('Eigen', '3.3.3', '', 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 "
|
|
|
|
sanity_check_paths = {
|
|
'files': ['lib64/libCGAL.so',
|
|
'lib64/libCGAL_Core.so',
|
|
'lib64/libCGAL_Qt5.so',
|
|
'lib64/libCGAL_ImageIO.so'],
|
|
'dirs': []
|
|
}
|
|
|
|
moduleclass = 'numlib'
|