summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libblastrampoline/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/libblastrampoline/package.py')
-rw-r--r--var/spack/repos/builtin/packages/libblastrampoline/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libblastrampoline/package.py b/var/spack/repos/builtin/packages/libblastrampoline/package.py
new file mode 100644
index 0000000000..be047e6fb7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libblastrampoline/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2021 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 Libblastrampoline(MakefilePackage):
+ """Using PLT trampolines to provide a BLAS and LAPACK demuxing library."""
+
+ homepage = "https://github.com/staticfloat/libblastrampoline"
+ git = "https://github.com/staticfloat/libblastrampoline.git"
+
+ version('2.2.0', commit='45f4a20ffdba5d368db66d71885312f5f73c2dc7')
+
+ build_directory = 'src'
+
+ def install(self, spec, prefix):
+ with working_dir(self.build_directory):
+ make('prefix={0}'.format(prefix), 'install')