diff options
-rw-r--r-- | var/spack/repos/builtin/packages/hohqmesh/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hohqmesh/package.py b/var/spack/repos/builtin/packages/hohqmesh/package.py new file mode 100644 index 0000000000..2bf9d5dd3d --- /dev/null +++ b/var/spack/repos/builtin/packages/hohqmesh/package.py @@ -0,0 +1,22 @@ +# Copyright 2013-2021 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) + +from spack import * + + +class Hohqmesh(CMakePackage): + """High Order mesh generator for Hexahedral and Quadrilateral meshes.""" + + homepage = "https://github.com/trixi-framework/HOHQMesh" + url = "https://github.com/trixi-framework/HOHQMesh" + git = "https://github.com/trixi-framework/HOHQMesh.git" + + maintainers = ['schoonovernumerics'] + + version('main', branch='main') + + depends_on('ftobjectlibrary') + + parallel = False |