summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Ibanez <ibaned@users.noreply.github.com>2018-04-22 16:26:52 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2018-04-22 17:26:52 -0500
commit130d0c8b2ed905b7224e7c4ba997bbb9f4478011 (patch)
treea3c4cad391df0686322a0b707b0c1002ab9882f4
parentaf82f5529ded81a4015b6c5c8028c90d251d1f16 (diff)
downloadspack-130d0c8b2ed905b7224e7c4ba997bbb9f4478011.tar.gz
spack-130d0c8b2ed905b7224e7c4ba997bbb9f4478011.tar.bz2
spack-130d0c8b2ed905b7224e7c4ba997bbb9f4478011.tar.xz
spack-130d0c8b2ed905b7224e7c4ba997bbb9f4478011.zip
omega-h: new package (#7861)
* omega-h: new package * omega-h: fix multiple package.py issues * omega-h: use tarball checksum to avoid warning * omega-h: wrap lines for flake8
-rw-r--r--var/spack/repos/builtin/packages/omega-h/package.py67
1 files changed, 67 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/omega-h/package.py b/var/spack/repos/builtin/packages/omega-h/package.py
new file mode 100644
index 0000000000..89d9223750
--- /dev/null
+++ b/var/spack/repos/builtin/packages/omega-h/package.py
@@ -0,0 +1,67 @@
+##############################################################################
+# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class OmegaH(CMakePackage):
+ """Omega_h is a C++11 library providing data structures and algorithms
+ for adaptive discretizations. Its specialty is anisotropic triangle and
+ tetrahedral mesh adaptation. It runs efficiently on most modern HPC
+ hardware including GPUs.
+ """
+
+ homepage = "https://github.com/ibaned/omega_h"
+ url = "https://github.com/ibaned/omega_h/archive/v9.13.4.tar.gz"
+
+ version('9.13.4', '035f9986ec07ad97ae0aa1e171872307')
+
+ variant('shared', default=True, description='Build shared libraries')
+ variant('mpi', default=True, description='Activates MPI support')
+ variant('zlib', default=True, description='Activates ZLib support')
+
+ depends_on('mpi', when='+mpi')
+ depends_on('zlib', when='+zlib')
+
+ def cmake_args(self):
+ args = ['-DUSE_XSDK_DEFAULTS:BOOL=ON']
+ if '+shared' in self.spec:
+ args.append('-DBUILD_SHARED_LIBS:BOOL=ON')
+ else:
+ args.append('-DBUILD_SHARED_LIBS:BOOL=OFF')
+ if '+mpi' in self.spec:
+ args.append('-DOmega_h_USE_MPI:BOOL=ON')
+ args.append('-DCMAKE_CXX_COMPILER:FILEPATH={0}'.format(
+ self.spec['mpi'].mpicxx))
+ else:
+ args.append('-DOmega_h_USE_MPI:BOOL=OFF')
+ if '+zlib' in self.spec:
+ args.append('-DTPL_ENABLE_ZLIB:BOOL=ON')
+ args.append('-DTPL_ZLIB_INCLUDE_DIRS:STRING={0}'.format(
+ self.spec['zlib'].prefix.include))
+ args.append('-DTPL_ZLIB_LIBRARIES:STRING={0}'.format(
+ self.spec['zlib'].libs))
+ else:
+ args.append('-DTPL_ENABLE_ZLIB:BOOL=OFF')
+ return args