adjust the class name for suite sparse

This commit is contained in:
Denis Davydov 2016-03-22 09:27:39 +01:00
parent aca8b5c89d
commit 3c5a1605d5

View File

@ -1,7 +1,7 @@
from spack import * from spack import *
class Suitesparse(Package): class SuiteSparse(Package):
""" """
SuiteSparse is a suite of sparse matrix algorithms SuiteSparse is a suite of sparse matrix algorithms
""" """
@ -24,4 +24,3 @@ def install(self, spec, prefix):
# FIXME : this actually uses the current workaround # FIXME : this actually uses the current workaround
# FIXME : (blas / lapack always provide libblas and liblapack as aliases) # FIXME : (blas / lapack always provide libblas and liblapack as aliases)
make('install', 'INSTALL=%s' % prefix, 'BLAS=-lblas', 'LAPACK=-llapack') make('install', 'INSTALL=%s' % prefix, 'BLAS=-lblas', 'LAPACK=-llapack')