
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
# Copyright 2013-2021 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 AtomDft(MakefilePackage):
|
|
"""ATOM is a program for DFT calculations in atoms and pseudopotential
|
|
generation."""
|
|
|
|
homepage = "https://departments.icmab.es/leem/siesta/Pseudopotentials/"
|
|
url = "https://departments.icmab.es/leem/siesta/Pseudopotentials/Code/atom-4.2.6.tgz"
|
|
|
|
version('4.2.6', sha256='489f0d883af35525647a8b8f691e7845c92fe6b5a25b13e1ed368edfd0391ed2')
|
|
|
|
depends_on('libgridxc')
|
|
depends_on('xmlf90')
|
|
|
|
def edit(self, spec, prefix):
|
|
copy('arch.make.sample', 'arch.make')
|
|
|
|
@property
|
|
def build_targets(self):
|
|
return ['XMLF90_ROOT=%s' % self.spec['xmlf90'].prefix,
|
|
'GRIDXC_ROOT=%s' % self.spec['libgridxc'].prefix,
|
|
'FC=fc']
|
|
|
|
def install(self, spec, prefix):
|
|
mkdir(prefix.bin)
|
|
install('atm', prefix.bin)
|