summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tethex/package.py
blob: 7094c69ce8f76ff4b6f84571a0d091df1a9295e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2013-2023 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.package import *


class Tethex(CMakePackage):
    """Tethex is designed to convert triangular (in 2D) or tetrahedral (in 3D)
    Gmsh's mesh to quadrilateral or hexahedral one respectively. These meshes
    can be used in software packages working with hexahedrals only - for
    example, deal.II.
    """

    homepage = "https://github.com/martemyev/tethex"
    url = "https://github.com/martemyev/tethex/archive/v0.0.7.tar.gz"
    git = "https://github.com/martemyev/tethex.git"

    version("develop", branch="master")
    version("0.0.7", sha256="5f93f434c6d110be3d8d0eba69336864d0e5a26aba2d444eb25adbd2caf73645")

    variant(
        "build_type",
        default="Release",
        description="The build type to build",
        values=("Debug", "Release"),
    )

    depends_on("cmake@2.8:", type="build")

    def install(self, spec, prefix):
        # install by hand
        mkdirp(prefix.bin)
        install("tethex", prefix.bin)