File: Makefile.PL

package info (click to toggle)
libperl6-export-attrs-perl 0.000006-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 124 kB
  • sloc: perl: 177; sh: 6; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 633 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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Perl6::Export::Attrs',
    AUTHOR              => 'Damian Conway <DCONWAY@cpan.org>',
    VERSION_FROM        => 'lib/Perl6/Export/Attrs.pm',
    ABSTRACT_FROM       => 'lib/Perl6/Export/Attrs.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'          => 0,
        'version'             => 0,
        'Attribute::Handlers' => 0,
        'PadWalker'           => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Perl6-Export-Attrs-*' },
);