diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/molcas/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/molcas/package.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/var/spack/repos/builtin/packages/molcas/package.py b/var/spack/repos/builtin/packages/molcas/package.py index 253225d281..3a084b21ed 100644 --- a/var/spack/repos/builtin/packages/molcas/package.py +++ b/var/spack/repos/builtin/packages/molcas/package.py @@ -10,22 +10,22 @@ from spack.package import * class Molcas(CMakePackage): """Molcas is an ab initio quantum chemistry software package - developed by scientists to be used by scientists. - Please set the path to licence file with the following command - export MOLCAS_LICENSE=/path/to/molcas/license/""" + developed by scientists to be used by scientists. + Please set the path to licence file with the following command + export MOLCAS_LICENSE=/path/to/molcas/license/""" homepage = "https://www.molcas.org/" url = "file://{0}/molcas8.2.tar.gz".format(os.getcwd()) manual_download = True - version('8.2', '25b5fb8e1338b458a3eaea0b3d3b5e58') + version("8.2", "25b5fb8e1338b458a3eaea0b3d3b5e58") # Licensing license_required = True - license_vars = ['MOLCAS_LICENSE'] + license_vars = ["MOLCAS_LICENSE"] - depends_on('openmpi') - depends_on('openblas') - depends_on('hdf5') + depends_on("openmpi") + depends_on("openblas") + depends_on("hdf5") - patch('install_driver.patch') + patch("install_driver.patch") |