File: Makefile.PL

package info (click to toggle)
libobject-result-perl 0.000003-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: perl: 224; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 682 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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Object::Result',
    AUTHOR              => 'Damian Conway <DCONWAY@CPAN.org>',
    VERSION_FROM        => 'lib/Object/Result.pm',
    ABSTRACT_FROM       => 'lib/Object/Result.pm',
    PL_FILES            => {},
    LICENSE             => 'artistic2',
    MIN_PERL_VERSION    => 5.014,
    PREREQ_PM => {
        'Test::More'         => 0,
        'Keyword::Simple'    => 0,
        'PPI'                => 0,
        'Method::Signatures' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Object-Result-*' },
);