# 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")