diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-24 09:47:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 20:47:19 -0500 |
commit | 6f48ac5eb640ab17d4133bcb3b4e2ce02910cbcd (patch) | |
tree | 8f5bc2d1fd6bf8636a02063ad97bc5ac3c395386 | |
parent | 92fe14cc47948af4acf732c333b392e473d7b37e (diff) | |
download | spack-6f48ac5eb640ab17d4133bcb3b4e2ce02910cbcd.tar.gz spack-6f48ac5eb640ab17d4133bcb3b4e2ce02910cbcd.tar.bz2 spack-6f48ac5eb640ab17d4133bcb3b4e2ce02910cbcd.tar.xz spack-6f48ac5eb640ab17d4133bcb3b4e2ce02910cbcd.zip |
Add new package: libkcapi (#18777)
-rw-r--r-- | var/spack/repos/builtin/packages/libkcapi/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libkcapi/package.py b/var/spack/repos/builtin/packages/libkcapi/package.py new file mode 100644 index 0000000000..c806091073 --- /dev/null +++ b/var/spack/repos/builtin/packages/libkcapi/package.py @@ -0,0 +1,22 @@ +# 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 Libkcapi(AutotoolsPackage): + """libkcapi allows user-space to access the Linux kernel crypto API.""" + + homepage = "https://github.com/smuellerDD/libkcapi" + url = "https://github.com/smuellerDD/libkcapi/archive/v1.2.0.tar.gz" + + version('1.2.0', sha256='8be75173c56342c8fe1c63a901c0d9cb750405abdc23288d04f549a960862867') + version('1.1.5', sha256='ca38bf4d750dd2d3531ddb94d502feedb0f926bd9b29fb97e253b83bbceb6611') + version('1.1.4', sha256='241ffa4f2813c6da442b1c1e152d489905ffab35a6c50e76aca5ee6fe60319dd') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') |