Massive conversion from Package to CMakePackage (#4975)
This commit is contained in:
@@ -25,11 +25,9 @@
|
||||
from spack import *
|
||||
|
||||
|
||||
class Glm(Package):
|
||||
class Glm(CMakePackage):
|
||||
"""OpenGL Mathematics (GLM) is a header only C++ mathematics library for
|
||||
graphics software based on the OpenGL Shading Language (GLSL)
|
||||
specification.
|
||||
|
||||
graphics software based on the OpenGL Shading Language (GLSL) specification
|
||||
"""
|
||||
|
||||
homepage = "https://github.com/g-truc/glm"
|
||||
@@ -37,10 +35,4 @@ class Glm(Package):
|
||||
|
||||
version('0.9.7.1', '61af6639cdf652d1cdd7117190afced8')
|
||||
|
||||
depends_on('cmake', type='build')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
with working_dir('spack-build', create=True):
|
||||
cmake('..', *std_cmake_args)
|
||||
make()
|
||||
make("install")
|
||||
depends_on('cmake@2.6:', type='build')
|
||||
|
Reference in New Issue
Block a user