summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mesquite/package.py
blob: 199065e58513a5dcb25f400c2e9af5f477708948 (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
36
37
# Copyright 2013-2019 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 Mesquite(AutotoolsPackage):
    """Mesquite (Mesh Quality Improvement Toolkit) is designed to provide a
       stand-alone, portable, comprehensive suite of mesh quality improvement
       algorithms and components that can be used to construct custom quality
       improvement algorithms. Mesquite provides a robust and effective mesh
       improvement toolkit that allows both meshing researchers application
       scientists to benefit from the latest developments in mesh quality
       control and improvement."""

    homepage = "https://software.sandia.gov/mesquite"
    url      = "https://software.sandia.gov/mesquite/mesquite-2.3.0.tar.gz"

    version('2.99',  sha256='7d834dbcc3132d903dbecb59337dc5b47505b7fb579b68f1ce66e5df87106954')
    version('2.3.0', sha256='4ab4ceadfa596e16c00dbb0e8b830a9112fa1b73291ca07633ec379a39b8bb28')
    version('2.2.0', sha256='3d48322c3e148431ee1af155d6bb94dfeef15795da1f46996c112df27778a4a2')

    variant('mpi', default=True, description='Enable MPI parallel support')

    depends_on('mpi', when='+mpi')

    def configure_args(self):
        args = [
            'CC=%s' % self.spec['mpi'].mpicc,
            'CXX=%s' % self.spec['mpi'].mpicxx,
            '--with-mpi=%s' % self.spec['mpi'].prefix,
            '--enable-release',
            '--enable-shared',
        ]
        return args