summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorilbiondo <61497728+ilbiondo@users.noreply.github.com>2020-07-23 17:07:48 +0200
committerGitHub <noreply@github.com>2020-07-23 17:07:48 +0200
commitf42394daf581c7e8bb8233b6ac9576c6583172d7 (patch)
tree6b194a4ed8accf428e2b44f4c842acef4b00ae2a /var
parent10dacc258865039cf40d1f47aa165687585c92bd (diff)
downloadspack-f42394daf581c7e8bb8233b6ac9576c6583172d7.tar.gz
spack-f42394daf581c7e8bb8233b6ac9576c6583172d7.tar.bz2
spack-f42394daf581c7e8bb8233b6ac9576c6583172d7.tar.xz
spack-f42394daf581c7e8bb8233b6ac9576c6583172d7.zip
csa-c: added new package at master (#17676)
Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/csa-c/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/csa-c/package.py b/var/spack/repos/builtin/packages/csa-c/package.py
new file mode 100644
index 0000000000..9bc09f49fd
--- /dev/null
+++ b/var/spack/repos/builtin/packages/csa-c/package.py
@@ -0,0 +1,19 @@
+# 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 CsaC(AutotoolsPackage):
+ """csa: Cubic Spline Approximation. csa is a C code for
+ cubic spline approximation of 2D scattered data. It provides
+ a C library and a command line utility csabathy."""
+
+ homepage = "https://github.com/sakov/csa-c"
+ git = "https://github.com/sakov/csa-c.git"
+
+ version('master', branch='master')
+
+ configure_directory = 'csa'