16 lines
442 B
Plaintext
16 lines
442 B
Plaintext
from spack import *
|
|
|
|
class Arpack(Package):
|
|
"""ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
|
|
|
|
homepage = "http://www.caam.rice.edu/software/ARPACK/"
|
|
url = "http://www.caam.rice.edu/software/ARPACK/SRC/arpack96.tar.gz"
|
|
|
|
version('96', 'fffaa970198b285676f4156cebc8626e')
|
|
|
|
depends_on("blas")
|
|
depends_on("lapack")
|
|
|
|
def install(self, spec, prefix):
|
|
|