summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/csa-c/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/csa-c/package.py')
-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'