summaryrefslogtreecommitdiff
path: root/var/spack/packages/hypre/package.py
blob: 198b3f00dcd88303c16383c8ceda03e69ae1e064 (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
from spack import *

class Hypre(Package):
    """Hypre is a library of high performance preconditioners that
       features parallel multigrid methods for both structured and
       unstructured grid problems."""

    homepage = "https://computation.llnl.gov/project/linear_solvers/software.php"
    url      = "https://computation.llnl.gov/project/linear_solvers/download/hypre-2.10.0b.tar.gz"

    version('2.10.0b', '768be38793a35bb5d055905b271f5b8e')

    depends_on("mpi")
    depends_on("blas")
    depends_on("lapack")

    def install(self, spec, prefix):
        blas_dir = spec['blas'].prefix
        lapack_dir = spec['lapack'].prefix

        # Hypre's source is staged under ./src so we'll have to manually
        # cd into it.
        with working_dir("src"):
            configure(
                "--prefix=%s" % prefix,
                "--with-blas-libs=blas",
                "--with-blas-lib-dirs=%s/lib" % blas_dir,
                "--with-lapack-libs=\"lapack blas\"",
                "--with-lapack-lib-dirs=%s/lib" % lapack_dir,
                "--with-MPI")
            make()
            make("install")