diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2020-09-28 19:07:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 12:07:28 -0500 |
commit | 971e0049b16dcdc6e084d777f055d573b608afee (patch) | |
tree | 5ef532ccb98d0cdd2e86b18aec2a99e7b0d71515 /var | |
parent | 496d83a26a9f90662f64a90979e4d703d1677d82 (diff) | |
download | spack-971e0049b16dcdc6e084d777f055d573b608afee.tar.gz spack-971e0049b16dcdc6e084d777f055d573b608afee.tar.bz2 spack-971e0049b16dcdc6e084d777f055d573b608afee.tar.xz spack-971e0049b16dcdc6e084d777f055d573b608afee.zip |
EnTT: added new package at v3.5.2 (#19021)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/entt/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/entt/package.py b/var/spack/repos/builtin/packages/entt/package.py new file mode 100644 index 0000000000..9d06460a31 --- /dev/null +++ b/var/spack/repos/builtin/packages/entt/package.py @@ -0,0 +1,28 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) +class Entt(CMakePackage): + """EnTT is a header-only, tiny and easy to use library for game + programming and much more written in modern C++, mainly known for its + innovative entity-component-system (ECS) model. + """ + + homepage = "https://entt.docsforge.com" + url = "https://github.com/skypjack/entt/archive/v3.5.2.tar.gz" + + version('3.5.2', sha256='f9271293c44518386c402c9a2188627819748f66302df48af4f6d08e30661036') + + depends_on('cmake@3.7.0:', type='build') + depends_on('doxygen@1.8.0:', type='build') + + # TODO: This list is not comprehensive, we might want to extend it later + compiler_warning = 'EnTT requires a compiler with support for C++17' + conflicts('%apple-clang@:10.1', msg=compiler_warning) + conflicts('%clang@:6', msg=compiler_warning) + conflicts('%gcc@:7.1', msg=compiler_warning) + + def cmake_args(self): + return [ + '-DBUILD_DOCS=ON' + ] |