summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/octave-statistics/package.py
blob: 3e8ba5e50bfc52d21386ce3ae3460c44c787eb9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2022 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 OctaveStatistics(OctavePackage, SourceforgePackage):
    """Additional statistics functions for Octave."""

    homepage = "https://octave.sourceforge.io/statistics/"
    sourceforge_mirror_path = "octave/statistics-1.4.2.tar.gz"

    version('1.4.2', sha256='7976814f837508e70367548bfb0a6d30aa9e447d4e3a66914d069efb07876247')

    depends_on('octave-io')
    extends('octave@4.0.0:')