summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/netlib-scalapack/package.py
blob: ecf6fbcece12c7030d465f11c69ae8f270a41d0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2024 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 NetlibScalapack(Package):
    homepage = "http://www.netlib.org/scalapack/"
    url = "http://www.netlib.org/scalapack/scalapack-2.1.0.tgz"

    version("2.1.0", "b1d3e3e425b2e44a06760ff173104bdf")

    provides("scalapack")

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