summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-12-17 10:45:26 -0600
committerGitHub <noreply@github.com>2020-12-17 17:45:26 +0100
commit120e5cdcc400b809a1339965086bf997247825b5 (patch)
tree97c840ed0bfd6249529a04cdfee74af817777438 /var
parent12378db0d8eec62fc9f7cfbadd4e1291d4da9bc4 (diff)
downloadspack-120e5cdcc400b809a1339965086bf997247825b5.tar.gz
spack-120e5cdcc400b809a1339965086bf997247825b5.tar.bz2
spack-120e5cdcc400b809a1339965086bf997247825b5.tar.xz
spack-120e5cdcc400b809a1339965086bf997247825b5.zip
pangolin: add new package (#20388)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/pangolin/package.py22
1 files changed, 22 insertions, 0 deletions
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 0000000000..e43a01e4d2
--- /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')