summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorChristoph Junghans <christoph.junghans@gmail.com>2017-09-18 20:24:17 -0600
committerscheibelp <scheibel1@llnl.gov>2017-09-18 19:24:17 -0700
commitbb042f7bd76e364c3be6791c580b9426a4007627 (patch)
treea8daf5e0d6c80a0a4480820d3c8e05de3aa95169 /var
parent1098d78d2a7440651f99d177b4e7a62e6e1158d5 (diff)
downloadspack-bb042f7bd76e364c3be6791c580b9426a4007627.tar.gz
spack-bb042f7bd76e364c3be6791c580b9426a4007627.tar.bz2
spack-bb042f7bd76e364c3be6791c580b9426a4007627.tar.xz
spack-bb042f7bd76e364c3be6791c580b9426a4007627.zip
latte: fix url and add shared variant (#5358)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/latte/package.py24
1 files changed, 20 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/latte/package.py b/var/spack/repos/builtin/packages/latte/package.py
index e63c6ab98d..cd4c06e474 100644
--- a/var/spack/repos/builtin/packages/latte/package.py
+++ b/var/spack/repos/builtin/packages/latte/package.py
@@ -29,18 +29,34 @@ from spack import *
class Latte(CMakePackage):
"""Open source density functional tight binding molecular dynamics."""
- homepage = "https://gitlab.com/exaalt/latte"
- url = "https://gitlab.com/exaalt/latte/tags/v1.0"
+ homepage = "https://github.com/lanl/latte"
+ url = "https://github.com/lanl/latte/tarball/v1.0"
- version('develop', git='https://gitlab.com/exaalt/latte', branch='cmake')
+ version('develop', git='https://github.com/lanl/latte', branch='master')
+
+ variant('mpi', default=True,
+ description='Build with mpi')
+ variant('progress', default=False,
+ description='Use progress for fast')
+ variant('shared', default=True, description='Build shared libs')
depends_on("cmake@3.1:", type='build')
depends_on('blas')
depends_on('lapack')
+ depends_on('mpi', when='+mpi')
+ depends_on('qmd-progress', when='+progress')
root_cmakelists_dir = 'cmake'
def cmake_args(self):
- options = ['-DBUILD_SHARED_LIBS=ON']
+ options = []
+ if '+shared' in self.spec:
+ options.append('-DBUILD_SHARED_LIBS=ON')
+ else:
+ options.append('-DBUILD_SHARED_LIBS=OFF')
+ if '+mpi' in self.spec:
+ options.append('-DO_MPI=yes')
+ if '+progress' in self.spec:
+ options.append('-DPROGRESS=yes')
return options