File: Makefile.PL

package info (click to toggle)
libexception-class-dbi-perl 1.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 120 kB
  • sloc: perl: 134; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,207 bytes parent folder | download | duplicates (2)
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
42
43
44
45
use strict;
use warnings;
use 5.006;
use ExtUtils::MakeMaker 6.64;

WriteMakefile(
    NAME                => 'Exception::Class::DBI',
    LICENSE             => 'perl',
    VERSION_FROM        => 'lib/Exception/Class/DBI.pm',
    ABSTRACT_FROM       => 'lib/Exception/Class/DBI.pm',
    MIN_PERL_VERSION    => '5.006000',

    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '6.64',
    },

    BUILD_REQUIRES => {
        'ExtUtils::MakeMaker' => '6.64',
    },

    TEST_REQUIRES => {
        'Test::More'    => '0.17',
        'Test::Harness' => '2.03',
    },

    PREREQ_PM => {
        'DBI'              => '1.28',
        'Exception::Class' => '1.02',
    },

    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            bugtracker => {
                web  => 'https://github.com/plicease/Exception-Class-DBI/issues',
            },
            homepage => 'https://metacpan.org/pod/Exception-Class-DBI',
            repository => {
                type => 'git',
                url  => 'https://github.com/plicease/Exception-Class-DBI.git',
                web  => 'https://github.com/plicease/Exception-Class-DBI',
            },
        }
    },
);