19 lines
488 B
Python
19 lines
488 B
Python
# 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 NetlibBlas(Package):
|
|
homepage = "http://www.netlib.org/lapack/"
|
|
url = "http://www.netlib.org/lapack/lapack-3.5.0.tgz"
|
|
|
|
version('3.5.0', 'b1d3e3e425b2e44a06760ff173104bdf')
|
|
|
|
provides('blas')
|
|
|
|
def install(self, spec, prefix):
|
|
pass
|