glm : added basic configuration for the package
This commit is contained in:
parent
aab7102b9b
commit
ec5560374c
1 changed files with 19 additions and 0 deletions
19
var/spack/packages/glm/package.py
Normal file
19
var/spack/packages/glm/package.py
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
from spack import *
|
||||||
|
|
||||||
|
|
||||||
|
class Glm(Package):
|
||||||
|
"""
|
||||||
|
OpenGL Mathematics (GLM) is a header only C++ mathematics library for graphics software based on
|
||||||
|
the OpenGL Shading Language (GLSL) specification.
|
||||||
|
"""
|
||||||
|
|
||||||
|
homepage = "https://github.com/g-truc/glm"
|
||||||
|
url = "https://github.com/g-truc/glm/archive/0.9.7.1.tar.gz"
|
||||||
|
|
||||||
|
version('0.9.7.1', '61af6639cdf652d1cdd7117190afced8')
|
||||||
|
|
||||||
|
def install(self, spec, prefix):
|
||||||
|
with working_dir('spack-build', create=True):
|
||||||
|
cmake('..', *std_cmake_args)
|
||||||
|
make()
|
||||||
|
make("install")
|
Loading…
Reference in a new issue