summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/csa-c/package.py
blob: ec189e26f9c01175ace8c5077823e0d863b7f09a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 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"