fastor: new package (#44984)

* fastor: new package

* fastor: apply code suggestions and fix style
This commit is contained in:
Wouter Deconinck 2024-07-02 10:33:09 -05:00 committed by GitHub
parent 5b4edb9499
commit f47c307bf4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,25 @@
# Copyright 2013-2024 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.package import *
class Fastor(CMakePackage):
"""Fastor is a lightweight high performance tensor algebra framework
for modern C++."""
homepage = "https://github.com/romeric/Fastor"
url = "https://github.com/romeric/Fastor/archive/refs/tags/V0.6.4.tar.gz"
maintainers("wdconinc")
license("MIT", checked_by="wdconinc")
version("0.6.4", sha256="c97a3b9dbb92413be90689af9d942cddee12a74733cf42f1a8014965553a11f8")
depends_on("cmake@3.20:", type="build")
def cmake_args(self):
return [self.define("BUILD_TESTING", self.run_tests)]