Merge branch 'features/kripke' of git://github.com/tzislam/spack into tzislam-features/kripke
This commit is contained in:
commit
92b7534885
18
var/spack/repos/builtin/packages/kripke/package.py
Normal file
18
var/spack/repos/builtin/packages/kripke/package.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
from spack import *
|
||||||
|
|
||||||
|
class Kripke(Package):
|
||||||
|
"""Kripke is a simple, scalable, 3D Sn deterministic particle transport proxy/mini app."""
|
||||||
|
homepage = "https://codesign.llnl.gov/kripke.php"
|
||||||
|
url = "https://codesign.llnl.gov/downloads/kripke-openmp-1.1.tar.gz"
|
||||||
|
|
||||||
|
version('1.1', '7fe6f2b26ed983a6ce5495ab701f85bf')
|
||||||
|
|
||||||
|
#depends_on("mvapich2@1.9:")
|
||||||
|
|
||||||
|
def install(self, spec, prefix):
|
||||||
|
with working_dir('build', create=True):
|
||||||
|
cmake('-DCMAKE_INSTALL_PREFIX:PATH=.', '-DENABLE_OPENMP=1', '-DENABLE_MPI=1', '..', *std_cmake_args)
|
||||||
|
make()
|
||||||
|
#Kripke does not provide an install, so creating one here.
|
||||||
|
mkdirp(prefix.bin)
|
||||||
|
install('kripke', prefix.bin)
|
Loading…
Reference in New Issue
Block a user