summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/pangolin/package.py
blob: 54188d1558afbeb25b87253b8436a7fd58aa5cde (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-2022 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)


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"

    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')