
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
# Copyright 2013-2018 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 Snbone(MakefilePackage):
|
|
"""This application targets the primary computational solve burden of a SN,
|
|
continuous finite element based transport equation solver."""
|
|
|
|
homepage = "https://github.com/ANL-CESAR/"
|
|
git = "https://github.com/ANL-CESAR/SNbone.git"
|
|
|
|
version('develop')
|
|
|
|
tags = ['proxy-app']
|
|
|
|
depends_on('metis')
|
|
|
|
def build(self, spec, prefix):
|
|
working_dirs = ['src_c', 'src_fortran', 'src_makemesh',
|
|
'src_processmesh']
|
|
for wdir in working_dirs:
|
|
with working_dir(wdir, create=False):
|
|
if self.compiler.name == 'gcc' and wdir == 'src_processmesh':
|
|
make('COMPILER=gfortran', 'METISLIB={0}'
|
|
.format(spec['metis'].prefix + '/lib/libmetis.so'))
|
|
elif self.compiler.name == 'intel':
|
|
make('COMPILER=intel', 'LDFLAGS=-lm')
|
|
else:
|
|
# older gcc need link libs after objs, but
|
|
# LDFLAGS is in the front, so use IBMLIB instead
|
|
make('COMPILER=gfortran', 'IBMLIB=-lm')
|
|
|
|
def install(self, spec, prefix):
|
|
mkdirp(prefix.bin.C)
|
|
mkdirp(prefix.bin.Fortran)
|
|
mkdirp(prefix.bin.MakeMesh)
|
|
mkdirp(prefix.bin.ProcessMesh)
|
|
|
|
install('src_c/SNaCFE.x', prefix.bin.C)
|
|
install('src_fortran/SNaCFE.x', prefix.bin.Fortran)
|
|
install('src_makemesh/makemesh.x', prefix.bin.MakeMesh)
|
|
install('src_processmesh/processmesh.x', prefix.bin.ProcessMesh)
|