diff options
author | Olivier Cessenat <cessenat@gmail.com> | 2021-02-22 18:42:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 09:42:50 -0800 |
commit | 7e144b6841a385d588543402d64b9424fd22c9e0 (patch) | |
tree | 8ec492758a5aa9af3f832fbcf1b7da4be47aa408 /var | |
parent | 3d051ef5b3e83d5f8433e80839db61aaf185dd55 (diff) | |
download | spack-7e144b6841a385d588543402d64b9424fd22c9e0.tar.gz spack-7e144b6841a385d588543402d64b9424fd22c9e0.tar.bz2 spack-7e144b6841a385d588543402d64b9424fd22c9e0.tar.xz spack-7e144b6841a385d588543402d64b9424fd22c9e0.zip |
New Package: octave-symbolic (#21857)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/octave-symbolic/package.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/octave-symbolic/package.py b/var/spack/repos/builtin/packages/octave-symbolic/package.py new file mode 100644 index 0000000000..223995fab1 --- /dev/null +++ b/var/spack/repos/builtin/packages/octave-symbolic/package.py @@ -0,0 +1,21 @@ +# Copyright 2013-2021 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 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" + + version('2.9.0', sha256='089ec44a0a49417a8b78797e87f338da6a6e227509f3080724996483d39b23cb') + + extends('octave@4.2.0:') |