diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/adept-utils/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/adept-utils/package.py | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/adept-utils/package.py b/var/spack/repos/builtin/packages/adept-utils/package.py index 1a6998fd96..3f704a4893 100644 --- a/var/spack/repos/builtin/packages/adept-utils/package.py +++ b/var/spack/repos/builtin/packages/adept-utils/package.py @@ -1,13 +1,13 @@ ############################################################################## -# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC. +# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC. # Produced at the Lawrence Livermore National Laboratory. # # This file is part of Spack. # Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. # LLNL-CODE-647188 # -# For details, see https://github.com/llnl/spack -# Please also see the LICENSE file for our notice and the LGPL. +# For details, see https://github.com/spack/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License (as @@ -25,7 +25,7 @@ from spack import * -class AdeptUtils(Package): +class AdeptUtils(CMakePackage): """Utility libraries for LLNL performance tools.""" homepage = "https://github.com/llnl/adept-utils" @@ -34,11 +34,6 @@ class AdeptUtils(Package): version('1.0.1', '731a310717adcb004d9d195130efee7d') version('1.0', '5c6cd9badce56c945ac8551e34804397') - 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') |