summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/oclgrind/package.py
blob: 8ae18597e432fbdf2b334f78c959fe7efb2e4b6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2023 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.package 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")

    license("BSD-3-Clause")

    version("master", branch="master")
    version("19.10", sha256="f9a8f22cb9f6d88670f2578c46ba0d728ba8eaee5c481c2811129dc157c43dc0")

    depends_on("llvm +clang @5.0:")