File: Makefile.PL

package info (click to toggle)
libstatistics-pca-perl 0.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 148 kB
  • sloc: perl: 321; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 788 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Statistics::PCA',
    AUTHOR              => 'Daniel S. T. Hughes <dsth@cantab.net>',
    VERSION_FROM        => 'lib/Statistics/PCA.pm',
    ABSTRACT_FROM       => 'lib/Statistics/PCA.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'version'    => 0,
        'Carp' => '1.08', 
        'Math::Cephes::Matrix' => '0.47', 
        'Math::Cephes' => '0.47', 
        'List::Util' => '1.19', 
        'Math::MatrixReal' => '2.05', 
        'Text::SimpleTable' => '2.0', 
        'Contextual::Return' => '0.2.1',
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Statistics-PCA-*' },
);