spack/var/spack/repos/builtin/packages/pangolin/package.py
2025-01-02 15:40:28 +01:00

30 lines
766 B
Python

# Copyright Spack Project Developers. See 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")
depends_on("cxx", type="build") # generated
# 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")