summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/kim-api/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/kim-api/package.py')
-rw-r--r--var/spack/repos/builtin/packages/kim-api/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/kim-api/package.py b/var/spack/repos/builtin/packages/kim-api/package.py
new file mode 100644
index 0000000000..f8141813f1
--- /dev/null
+++ b/var/spack/repos/builtin/packages/kim-api/package.py
@@ -0,0 +1,27 @@
+# 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 KimApi(CMakePackage):
+ """OpenKIM is an online framework for making molecular simulations
+ reliable, reproducible, and portable. Computer implementations of
+ inter-atomic models are archived in OpenKIM, verified for coding
+ integrity, and tested by computing their predictions for a variety
+ of material properties. Models conforming to the KIM application
+ programming interface (API) work seamlessly with major simulation
+ codes that have adopted the KIM API standard.
+ """
+ homepage = "https://openkim.org/"
+ git = "https://github.com/openkim/kim-api"
+
+ version('develop', branch='master')
+ version('2.0rc1', commit="c2ab409ec0154ebd85d20a0a1a0bd2ba6ea95a9c")
+
+ def cmake_args(self):
+ args = ['-DBUILD_MODULES=OFF']
+
+ return args