From 120e5cdcc400b809a1339965086bf997247825b5 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Thu, 17 Dec 2020 10:45:26 -0600 Subject: [PATCH] pangolin: add new package (#20388) --- .../builtin/packages/pangolin/package.py | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 var/spack/repos/builtin/packages/pangolin/package.py diff --git a/var/spack/repos/builtin/packages/pangolin/package.py b/var/spack/repos/builtin/packages/pangolin/package.py new file mode 100644 index 00000000000..e43a01e4d2d --- /dev/null +++ b/var/spack/repos/builtin/packages/pangolin/package.py @@ -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')