File: Makefile.PL

package info (click to toggle)
libtest-weaken-perl 3.022000-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 372 kB
  • sloc: perl: 3,828; makefile: 24; sh: 6
file content (31 lines) | stat: -rwxr-xr-x 789 bytes parent folder | download | duplicates (3)
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
28
29
30
31
#!/usr/bin/perl -w

# No Scalar::Util weaken before 5.006
require 5.006;

use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Test::Weaken',
    AUTHOR              => 'Jeffrey Kegler <nospam@no.spam>',
    VERSION_FROM        => 'lib/Test/Weaken.pm',
    ABSTRACT_FROM       => 'lib/Test/Weaken.pm',
    PL_FILES            => {},
    LICENSE             => 'perl',
    MIN_PERL_VERSION    => '5.006',

    PREREQ_PM => {
        'Test::More' => 0,
        'Scalar::Util' => '1.18',
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    # clean               => { FILES => 'Test-Weaken-*' },
    SIGN                => 1,

    META_MERGE =>
    { no_index => { directory=>['sandbox'],
                  },
    },
);