easyconfigs-it4i/p/pybind11/pybind11-2.6.0-GCC-10.2.0-Python-3.8.6.eb
2021-07-02 11:52:11 +02:00

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'