1234567891011121314151617181920212223 |
- name = 'pybind11'
- version = '2.6.0'
- 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': 'GCCcore', 'version': '10.2.0'}
- source_urls = ['https://github.com/pybind/pybind11/archive/']
- sources = ['v%(version)s.tar.gz']
- checksums = ['90b705137b69ee3b5fc655eaca66d0dc9862ea1759226f7ccd3098425ae69571']
- builddependencies = [
- ('binutils', '2.35'),
- ('CMake', '3.18.4'),
- ('Eigen', '3.3.8'),
- ]
- dependencies = [('Python', '3.8.6')]
- configopts = "-DPYTHON_EXECUTABLE=$EBROOTPYTHON/bin/python"
- moduleclass = 'lib'
|