File: Makefile.PL

package info (click to toggle)
libobject-extend-perl 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 96 kB
  • sloc: perl: 445; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 969 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
22
23
24
25
26
27
28
29
30
31
use 5.008;
use strict;
use warnings;

use ExtUtils::MakeMaker;

my $EUMM_VERSION = eval($ExtUtils::MakeMaker::VERSION);

WriteMakefile(
    NAME           => 'Object::Extend',
    VERSION_FROM   => 'lib/Object/Extend.pm',
    PREREQ_PM      => {
        'Scalar::Util' => '1.09', # refaddr (used in t/recycled.t)
        'Storable'     => '2.05', # coderef deparsing
    },
    ABSTRACT_FROM  => 'lib/Object/Extend.pm',
    AUTHOR         => 'chocolateboy <chocolate@cpan.org>',
    ($EUMM_VERSION >= 6.48 ? (MIN_PERL_VERSION => '5.8.0') : ()),
    ($EUMM_VERSION >= 6.31 ? (LICENSE => 'perl') : ()),
    ($EUMM_VERSION >= 6.46 ?
        (META_MERGE => {
            test_requires => {
                'Test::More' => 0,
            },
            resources => {
                repository => 'https://github.com/chocolateboy/Object-Extend',
                bugtracker => 'https://github.com/chocolateboy/Object-Extend/issues',
            },
        }) : ()
    ),
);