summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
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')