summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/pangolin/package.py
blob: 1cde66335f0d0b392459a62dd1b81e124669e11e (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
24
25
26
27
28
# Copyright 2013-2024 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 Pangolin(CMakePackage):
    """Pangolin is a lightweight portable rapid development library for
    managing OpenGL display / interaction and abstracting video input."""

    homepage = "https://github.com/stevenlovegrove/Pangolin"
    git = "https://github.com/stevenlovegrove/Pangolin.git"

    license("MIT")

    version("master", branch="master")

    # Required dependencies
    depends_on("cmake@2.8.12:", type="build")
    depends_on("gl")
    depends_on("glew")
    depends_on("glu", type="link")

    # Optional dependencies
    depends_on("eigen")