summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/octave-symbolic/package.py
blob: 95f904d77317a58b80c42ad7251dd98f1650659e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 OctaveSymbolic(OctavePackage, SourceforgePackage):
    """Adds symbolic calculation features to GNU Octave.
    These include common Computer Algebra System tools such as algebraic operations,
    calculus, equation solving, Fourier and Laplace transforms, variable precision
    arithmetic and other features.
    Compatibility with other symbolic toolboxes is intended."""

    homepage = "https://octave.sourceforge.io/symbolic/"
    sourceforge_mirror_path = "octave/symbolic-2.9.0.tar.gz"

    license("GPL-3.0-only")

    version("2.9.0", sha256="089ec44a0a49417a8b78797e87f338da6a6e227509f3080724996483d39b23cb")

    extends("octave@4.2.0:")