diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/pangolin/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/pangolin/package.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/pangolin/package.py b/var/spack/repos/builtin/packages/pangolin/package.py index 87ec01f4f4..0b4e933358 100644 --- a/var/spack/repos/builtin/packages/pangolin/package.py +++ b/var/spack/repos/builtin/packages/pangolin/package.py @@ -12,15 +12,15 @@ class Pangolin(CMakePackage): managing OpenGL display / interaction and abstracting video input.""" homepage = "https://github.com/stevenlovegrove/Pangolin" - git = "https://github.com/stevenlovegrove/Pangolin.git" + git = "https://github.com/stevenlovegrove/Pangolin.git" - version('master', branch='master') + version("master", branch="master") # Required dependencies - depends_on('cmake@2.8.12:', type='build') - depends_on('gl') - depends_on('glew') - depends_on('glu', type='link') + depends_on("cmake@2.8.12:", type="build") + depends_on("gl") + depends_on("glew") + depends_on("glu", type="link") # Optional dependencies - depends_on('eigen') + depends_on("eigen") |