File: Makefile.PL

package info (click to toggle)
libtest-memory-cycle-perl 1.06-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 136 kB
  • sloc: perl: 420; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 714 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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Test::Memory::Cycle',
    VERSION_FROM        => 'Cycle.pm', # finds $VERSION
    ABSTRACT            => "Verifies code hasn't left circular references",
    PREREQ_PM => {
        'Devel::Cycle'          => 1.07,  # for weakened ref checking
        'Getopt::Long'          => 0,
        'PadWalker'             => 0,
        'Test::Builder'         => 0,
        'Test::Builder::Tester' => 0,
        'Test::More'            => 0,
        'Test::Simple'          => 0.62,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Test-Memory-Cycle-*' },
);