File: Makefile.PL

package info (click to toggle)
libtest-effects-perl 0.001005-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 212 kB
  • sloc: perl: 493; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;
use 5.014;

WriteMakefile(
    NAME                => 'Test::Effects',
    AUTHOR              => 'Damian Conway <DCONWAY@CPAN.org>',
    LICENSE             => 'perl',
    VERSION_FROM        => 'lib/Test/Effects.pm',
    ABSTRACT_FROM       => 'lib/Test/Effects.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::Trap' => 0.002001,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Test-Effects-*' },
);