Massive conversion from Package to CMakePackage (#4975)
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
from spack import *
|
||||
|
||||
|
||||
class Muster(Package):
|
||||
class Muster(CMakePackage):
|
||||
"""The Muster library provides implementations of sequential and
|
||||
parallel K-Medoids clustering algorithms. It is intended as a
|
||||
general framework for parallel cluster analysis, particularly
|
||||
@@ -38,11 +38,6 @@ class Muster(Package):
|
||||
version('1.0.1', 'd709787db7e080447afb6571ac17723c')
|
||||
version('1.0', '2eec6979a4a36d3a65a792d12969be16')
|
||||
|
||||
depends_on("boost")
|
||||
depends_on("mpi")
|
||||
depends_on('cmake', type='build')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
cmake(".", *std_cmake_args)
|
||||
make()
|
||||
make("install")
|
||||
depends_on('boost')
|
||||
depends_on('mpi')
|
||||
depends_on('cmake@2.8:', type='build')
|
||||
|
Reference in New Issue
Block a user