File: Makefile.PL

package info (click to toggle)
libcheck-isa-perl 0.09-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124 kB
  • sloc: perl: 287; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,178 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/perl

use 5.008;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME               => 'Check::ISA',
    AUTHOR             => q{Yuval Kogman <NUFFIN@cpan.org>},
    VERSION_FROM       => 'lib/Check/ISA.pm',
    ABSTRACT_FROM      => 'lib/Check/ISA.pm',
    LICENSE            => 'perl',
    MIN_PERL_VERSION   => 5.008,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES   => {
        'Test::More' => '1.001014',
    },
    PREREQ_PM => {
        'Test::use::ok' => 0,
        'Sub::Exporter' => 0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Check-ISA-*' },
    (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
        'meta-spec' => { version => 2 },
        provides    => {
            'Check::ISA' => { file => 'lib/Check/ISA.pm', version => '0.09' },
        },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/manwar/Check-ISA.git',
                web  => 'https://github.com/manwar/Check-ISA',
            },
        }})
     : ()
    ),
);