Skip to content
Snippets Groups Projects
Commit 42a65b12 authored by Athanasios Karmas's avatar Athanasios Karmas
Browse files

fixes to nest package according to @emueller changes in test_brainscales...

fixes to nest package according to @emueller changes in test_brainscales branch (revision required by @terhorst)
parent 8501d450
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,7 @@ class Nest(CMakePackage):
depends_on('doxygen', type='build')
depends_on('gsl', when='+gsl')
depends_on('readline')
depends_on('ncurses')
depends_on('libtool')
depends_on('pkgconfig', type='build')
......@@ -110,14 +111,12 @@ class Nest(CMakePackage):
env['F77'] = spec['mpi'].mpif77
env['FC'] = spec['mpi'].mpifc
configure(*self.cmake_args(spec, prefix))
configure(*configure_args)
make()
make("install")
def cmake_args(self):
args = [
"--prefix=" + prefix,
]
args = []
if '+mpi' in self.spec:
args.append('-Dwith-mpi=ON')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment