File: Build.PL

package info (click to toggle)
libmath-matrixreal-perl 2.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,120 kB
  • sloc: perl: 2,837; makefile: 8
file content (27 lines) | stat: -rw-r--r-- 821 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
25
26
27
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name       => 'Math::MatrixReal',
    license           => 'perl',
    dist_author       => 'Jonathan Leto <jonathan@leto.net>',
    dist_version_from => 'lib/Math/MatrixReal.pm',
    dist_abstract     => 'Manipulate NxN matrices of real numbers',
    license           => 'perl',
    build_requires => {
        'Test::Most' => 0,
        'File::Spec' => 0,
    },
    configure_requires => { 'Module::Build' => 0.38 },
    add_to_cleanup      => [ 'Math::MatrixReal-*' ],
    create_makefile_pl => 'traditional',
    meta_merge     => {
        resources => {
            repository  => 'http://github.com/leto/math--matrixreal/tree/master'
        },
    },
);

$builder->create_build_script();
print "Have an awesome day!\n";