summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGurkirat Singh <tbhaxor@gmail.com>2023-09-13 21:47:33 +0530
committerGitHub <noreply@github.com>2023-09-13 09:17:33 -0700
commit0696497ffa4137cb2460ef5d7c6c84121dcdafee (patch)
treeef3393766268f27165aa57d39d251e90d4783213 /var
parentbabd29da5015d740748329006487b7d7f96df169 (diff)
downloadspack-0696497ffa4137cb2460ef5d7c6c84121dcdafee.tar.gz
spack-0696497ffa4137cb2460ef5d7c6c84121dcdafee.tar.bz2
spack-0696497ffa4137cb2460ef5d7c6c84121dcdafee.tar.xz
spack-0696497ffa4137cb2460ef5d7c6c84121dcdafee.zip
Add cmake package for v2.1.0 and master (git) versions of libfirefly (#39778)
* libfirefly: Add cmake package for v2.1.0 and master (git) versions * Separate git URL from version declaration Co-authored-by: Alec Scott <alec@bcs.sh>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libfirefly/package.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libfirefly/package.py b/var/spack/repos/builtin/packages/libfirefly/package.py
new file mode 100644
index 0000000000..a4fc6b00a0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libfirefly/package.py
@@ -0,0 +1,29 @@
+# Copyright 2013-2023 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 Libfirefly(CMakePackage):
+ """A standalone C++ Library for vectors calculations"""
+
+ homepage = "https://libfirefly.tbhaxor.com"
+ url = "https://github.com/tbhaxor/firefly/archive/refs/tags/v2.1.0.tar.gz"
+ git = "https://github.com/tbhaxor/firefly.git"
+
+ maintainers("tbhaxor")
+
+ version("master", branch="master")
+ version("2.1.0", sha256="4de4b216c73199a1826de7a0d45205b401603315347d7947d8b5950d3e6b893d")
+
+ variant(
+ "double-precision",
+ description="Enables double type instead of float when enabled",
+ default=True,
+ )
+
+ def cmake_args(self):
+ args = [self.define_from_variant("Firefly_ENABLE_DOUBLE_PRECISION", "double-precision")]
+ return args