pangolin: add new package (#20388)

This commit is contained in:
Adam J. Stewart 2020-12-17 10:45:26 -06:00 committed by GitHub
parent 12378db0d8
commit 120e5cdcc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,22 @@
# 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)
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')
# Optional dependencies
depends_on('eigen')