diff options
author | Christoph Junghans <christoph.junghans@gmail.com> | 2017-10-13 13:28:36 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-10-13 12:28:36 -0700 |
commit | 23e801923d3caf9d0faf394e8caab25a3505565f (patch) | |
tree | bb1665786643313fc4a05d6273b7861aa7e5aa04 | |
parent | e17765db39deb70b9a140ff197339d8cba417f6b (diff) | |
download | spack-23e801923d3caf9d0faf394e8caab25a3505565f.tar.gz spack-23e801923d3caf9d0faf394e8caab25a3505565f.tar.bz2 spack-23e801923d3caf9d0faf394e8caab25a3505565f.tar.xz spack-23e801923d3caf9d0faf394e8caab25a3505565f.zip |
espressopp -> py-espressopp (#5732)
* espressopp -> py-espressopp
* Update package.py
-rw-r--r-- | var/spack/repos/builtin/packages/py-espressopp/package.py (renamed from var/spack/repos/builtin/packages/espressopp/package.py) | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/espressopp/package.py b/var/spack/repos/builtin/packages/py-espressopp/package.py index cb1c3f0c8d..6b7ee1f6a6 100644 --- a/var/spack/repos/builtin/packages/espressopp/package.py +++ b/var/spack/repos/builtin/packages/py-espressopp/package.py @@ -26,7 +26,7 @@ from spack import * -class Espressopp(CMakePackage): +class PyEspressopp(CMakePackage): """ESPResSo++ is an extensible, flexible, fast and parallel simulation software for soft matter research. It is a highly versatile software package for the scientific simulation and analysis of coarse-grained @@ -61,7 +61,11 @@ class Espressopp(CMakePackage): depends_on("doxygen", when="+dg", type='build') def cmake_args(self): - return ['-DEXTERNAL_MPI4PY=ON', '-DEXTERNAL_BOOST=ON'] + return [ + '-DEXTERNAL_MPI4PY=ON', + '-DEXTERNAL_BOOST=ON', + '-DWITH_RC_FILES=OFF' + ] def build(self, spec, prefix): with working_dir(self.build_directory): |