mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00
27 lines
738 B
Plaintext
27 lines
738 B
Plaintext
# IT4Innovations 2021
|
|
# LK
|
|
|
|
name = 'pybind11'
|
|
version = '2.6.0'
|
|
versionsuffix = '-Python-%(pyver)s'
|
|
|
|
homepage = 'https://pybind11.readthedocs.io'
|
|
description = """pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa,
|
|
mainly to create Python bindings of existing C++ code."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '10.2.0'}
|
|
|
|
source_urls = ['https://github.com/pybind/pybind11/archive/']
|
|
sources = ['v%(version)s.tar.gz']
|
|
checksums = ['90b705137b69ee3b5fc655eaca66d0dc9862ea1759226f7ccd3098425ae69571']
|
|
|
|
builddependencies = [
|
|
('CMake', '3.18.4'),
|
|
('Eigen', '3.3.8'),
|
|
]
|
|
dependencies = [('Python', '3.8.6')]
|
|
|
|
configopts = "-DPYTHON_EXECUTABLE=$EBROOTPYTHON/bin/python"
|
|
|
|
moduleclass = 'lib'
|