[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add glm.
From: |
Andreas Enge |
Subject: |
01/01: gnu: Add glm. |
Date: |
Sat, 14 Mar 2015 16:40:46 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit c12efc72cf27324f59f8543255697520fd82923e
Author: Andreas Enge <address@hidden>
Date: Sat Mar 14 17:36:07 2015 +0100
gnu: Add glm.
* gnu/packages/maths.scm (glm): New variable.
Co-authored-by: John Darrington <address@hidden>
---
gnu/packages/maths.scm | 25 ++++++++++++++++++++++++-
1 files changed, 24 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 8eda4bd..52d5dd9 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -66,7 +66,8 @@
#:use-module (gnu packages tcl)
#:use-module (gnu packages texinfo)
#:use-module (gnu packages texlive)
- #:use-module (gnu packages xml))
+ #:use-module (gnu packages xml)
+ #:use-module (gnu packages zip))
(define-public units
(package
@@ -1193,3 +1194,25 @@ cpufreq-selector -g performance -c N-1
where N is the number of cores of your CPU. Failure to do so will result in a
library with poor performance.")
(license license:bsd-3)))
+
+(define-public glm
+ (package
+ (name "glm")
+ (version "0.9.6.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/ogl-math/glm-"
+ version ".zip"))
+ (sha256
+ (base32
+ "1cnjmi033a16a95v6xfkr1bvfmkd26hzdjka8j1819hgn5b1nr8l"))))
+ (build-system cmake-build-system)
+ (native-inputs
+ `(("unzip" ,unzip)))
+ (home-page "http://glm.g-truc.net")
+ (synopsis "OpenGL Mathematics library")
+ (description "OpenGL Mathematics (GLM) is a header-only C++ mathematics
+library for graphics software based on the OpenGL Shading Language (GLSL)
+specifications.")
+ (license license:expat)))