2024-01-02 00:21:30 -08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2018-10-07 13:52:23 -07:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2015-11-27 23:06:18 -08:00
|
|
|
#
|
2018-10-07 13:52:23 -07:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
2022-05-28 09:55:44 -07:00
|
|
|
from spack.package import *
|
2015-11-27 23:06:18 -08:00
|
|
|
|
2016-08-10 01:50:00 -07:00
|
|
|
|
2015-11-27 23:06:18 -08:00
|
|
|
class NetlibBlas(Package):
|
|
|
|
|
homepage = "http://www.netlib.org/lapack/"
|
2022-07-30 15:19:18 -07:00
|
|
|
url = "http://www.netlib.org/lapack/lapack-3.5.0.tgz"
|
2015-11-27 23:06:18 -08:00
|
|
|
|
2023-04-19 23:17:47 +02:00
|
|
|
version("3.5.0", md5="b1d3e3e425b2e44a06760ff173104bdf")
|
2015-11-27 23:06:18 -08:00
|
|
|
|
2022-07-30 15:19:18 -07:00
|
|
|
provides("blas")
|