summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMatthias Diener <mdiener@illinois.edu>2020-09-25 02:07:07 -0500
committerGitHub <noreply@github.com>2020-09-25 09:07:07 +0200
commit8ac1d62159677003841aee20e74df49134e33580 (patch)
treeb8af8055500db9b4a14394ac10fdafdc5965bb6c /var
parentc9c2bac373420af2a5186cc41d941bf275ed3938 (diff)
downloadspack-8ac1d62159677003841aee20e74df49134e33580.tar.gz
spack-8ac1d62159677003841aee20e74df49134e33580.tar.bz2
spack-8ac1d62159677003841aee20e74df49134e33580.tar.xz
spack-8ac1d62159677003841aee20e74df49134e33580.zip
oclgrind: added new package at v19.10 (#18943)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/oclgrind/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/oclgrind/package.py b/var/spack/repos/builtin/packages/oclgrind/package.py
new file mode 100644
index 0000000000..c3b9302583
--- /dev/null
+++ b/var/spack/repos/builtin/packages/oclgrind/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2020 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 Oclgrind(CMakePackage):
+ """An OpenCL device simulator and debugger."""
+
+ homepage = "https://github.com/jrprice/Oclgrind"
+ url = "https://github.com/jrprice/Oclgrind/archive/v19.10.tar.gz"
+ git = "https://github.com/jrprice/Oclgrind"
+
+ maintainers = ['matthiasdiener']
+
+ version('master', branch='master')
+ version('19.10', sha256='f9a8f22cb9f6d88670f2578c46ba0d728ba8eaee5c481c2811129dc157c43dc0')
+
+ depends_on("llvm +clang @5.0:")