summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJennifer Herting <jen@herting.cc>2020-03-03 12:01:29 -0500
committerGitHub <noreply@github.com>2020-03-03 11:01:29 -0600
commita237781c4872ef23f7d0eff088f80441cb89f9b4 (patch)
tree13a02f772c3028882a234099cc688eae0f481d54 /var
parent2d1592cca74dc40f15d53c7030310142b4d10e06 (diff)
downloadspack-a237781c4872ef23f7d0eff088f80441cb89f9b4.tar.gz
spack-a237781c4872ef23f7d0eff088f80441cb89f9b4.tar.bz2
spack-a237781c4872ef23f7d0eff088f80441cb89f9b4.tar.xz
spack-a237781c4872ef23f7d0eff088f80441cb89f9b4.zip
Created package glfw (#15296)
* Created stub * added description and homepage * added dependencies * removed extra boilerplae * switched to the pkgconfig provider
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/glfw/package.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/glfw/package.py b/var/spack/repos/builtin/packages/glfw/package.py
new file mode 100644
index 0000000000..168fff8b0e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/glfw/package.py
@@ -0,0 +1,39 @@
+# Copyright 2013-2019 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)
+
+from spack import *
+
+
+class Glfw(CMakePackage):
+ """GLFW is an Open Source, multi-platform library for
+ OpenGL, OpenGL ES and Vulkan development on the desktop. It
+ provides a simple API for creating windows, contexts and
+ surfaces, receiving input and events."""
+
+ homepage = "https://www.glfw.org/"
+ url = "https://github.com/glfw/glfw/archive/3.3.2.tar.gz"
+
+ version('3.3.2', sha256='98768e12e615fbe9f3386f5bbfeb91b5a3b45a8c4c77159cef06b1f6ff749537')
+ version('3.3.1', sha256='6bca16e69361798817a4b62a5239a77253c29577fcd5d52ae8b85096e514177f')
+ version('3.3', sha256='81bf5fde487676a8af55cb317830703086bb534c53968d71936e7b48ee5a0f3e')
+ version('3.2.1', sha256='e10f0de1384d75e6fc210c53e91843f6110d6c4f3afbfb588130713c2f9d8fe8')
+ version('3.2', sha256='cb3aab46757981a39ae108e5207a1ecc4378e68949433a2b040ce2e17d8f6aa6')
+ version('3.1.2', sha256='6ac642087682aaf7f8397761a41a99042b2c656498217a1c63ba9706d1eef122')
+ version('3.1.1', sha256='4de311ec9bf43bfdc8423ddf93b91dc54dc73dcfbedfb0991b6fbb3a9baf245f')
+ version('3.1', sha256='2140f4c532e7ce4c84cb7e4c419d0979d5954fa1ce204b7646491bd2cc5bf308')
+ version('3.0.4', sha256='a4e7c57db2086803de4fc853bd472ff8b6d2639b9aa16e6ac6b19ffb53958caf')
+ version('3.0.3', sha256='7a182047ba6b1fdcda778b79aac249bb2328b6d141188cb5df29560715d01693')
+
+ depends_on('libxrandr')
+ depends_on('libxinerama')
+ depends_on('libxcursor')
+ depends_on('libxdamage')
+ depends_on('libxft')
+ depends_on('libxi')
+ depends_on('libxmu')
+ depends_on('freetype')
+ depends_on('fontconfig')
+ depends_on('doxygen', type='build')
+ depends_on('pkgconfig', type='build')