summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@informatik.uni-hamburg.de>2020-10-02 21:12:18 +0200
committerGitHub <noreply@github.com>2020-10-02 12:12:18 -0700
commite47b725d8e2d2f65188a4300190261b5e6f8abf5 (patch)
tree70d9c102ea067cc81824e932c834f52951467339
parentc21a65b73aaf14c47c97866c2a2b5ba2b0a39ed6 (diff)
downloadspack-e47b725d8e2d2f65188a4300190261b5e6f8abf5.tar.gz
spack-e47b725d8e2d2f65188a4300190261b5e6f8abf5.tar.bz2
spack-e47b725d8e2d2f65188a4300190261b5e6f8abf5.tar.xz
spack-e47b725d8e2d2f65188a4300190261b5e6f8abf5.zip
New package: libisal (#19098)
-rw-r--r--var/spack/repos/builtin/packages/libisal/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libisal/package.py b/var/spack/repos/builtin/packages/libisal/package.py
new file mode 100644
index 0000000000..abcbba46e7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libisal/package.py
@@ -0,0 +1,27 @@
+# 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 Libisal(AutotoolsPackage):
+ """ISA-L is a collection of optimized low-level functions targeting
+ storage applications."""
+
+ homepage = "https://github.com/intel/isa-l"
+ url = "https://github.com/intel/isa-l/archive/v2.29.0.tar.gz"
+
+ version('2.29.0', sha256='832d9747ef3f0c8c05d39e3d7fd6ee5299a844e1ee7382fc8c8b52a268f36eda')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+
+ depends_on('nasm', type='build')
+
+ def autoreconf(self, spec, prefix):
+ autogen = Executable('./autogen.sh')
+ autogen()