diff --git a/easybuild/easyconfigs/r/robin-map/robin-map-1.3.0-GCCcore-13.2.0.eb b/easybuild/easyconfigs/r/robin-map/robin-map-1.3.0-GCCcore-13.2.0.eb new file mode 100644 index 000000000000..059b18cc740e --- /dev/null +++ b/easybuild/easyconfigs/r/robin-map/robin-map-1.3.0-GCCcore-13.2.0.eb @@ -0,0 +1,26 @@ +# Authors:: Tanmoy Chakraborty (University of Warwick/tanmoy.chakraborty@warwick.ac.uk) + +easyblock = 'CMakeMake' + +name = 'robin-map' +version = '1.3.0' + +homepage = 'https://github.com/Tessil/robin-map' +description = """robin-map is a C++ implementation of a fast and memory efficient hash table. +It is based on Robin Hood hashing with backward shift deletion.""" + +source_urls = ['https://github.com/Tessil/robin-map/archive/refs/tags/'] +sources = ['v%(version)s.tar.gz'] +checksums = ['a8424ad3b0affd4c57ed26f0f3d8a29604f0e1f2ef2089f497f614b1c94c7236'] + +toolchain = {'name': 'GCCcore', 'version': '13.2.0'} + +dependencies = [('CMake', '3.27.6')] +builddependencies = [('binutils', '2.40')] + +sanity_check_paths = { + 'files': ['include/tsl/robin_map.h'], + 'dirs': ['share/cmake'], +} + +moduleclass = 'devel'