summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-statistics-pca/package.py
blob: 3641edfe7eda965efb057ce4852e12916952ed6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2019 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 PerlStatisticsPca(PerlPackage):
    """A simple Perl implementation of Principal Component Analysis."""

    homepage = "http://search.cpan.org/~dsth/Statistics-PCA/lib/Statistics/PCA.pm"
    url      = "http://search.cpan.org/CPAN/authors/id/D/DS/DSTH/Statistics-PCA-0.0.1.tar.gz"

    version('0.0.1', '6e0e05fe13f6becea525b973a0c29001')

    depends_on('perl-module-build', type='build')
    depends_on('perl-contextual-return', type=('build', 'run'))
    depends_on('perl-text-simpletable', type=('build', 'run'))
    depends_on('perl-math-matrixreal', type=('build', 'run'))