diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/authselect/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/authselect/package.py b/var/spack/repos/builtin/packages/authselect/package.py new file mode 100644 index 0000000000..3cc20e583e --- /dev/null +++ b/var/spack/repos/builtin/packages/authselect/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Authselect(AutotoolsPackage): + """Select authentication and indentity profile to use on the system.""" + + homepage = "https://github.com/authselect/authselect" + url = "https://github.com/authselect/authselect/archive/1.2.1.tar.gz" + + version('1.2.1', sha256='6f58c36d8b405da836dc9d1f44c1a22660c60f9e7ece327138d1b2492cb57749') + version('1.2', sha256='c354c87a0115612cb51b09b5157f151569e16384cdd69f32b8515209036531b4') + version('1.1', sha256='39b888575980c1ecac7022dfe5a5452eef59cef850b8544ed5f928e2e8a335dd') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') + depends_on('popt') |