File: Makefile.PL

package info (click to toggle)
libdancer-plugin-database-core-perl 0.20-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 176 kB
  • sloc: perl: 631; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,213 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
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME             => 'Dancer::Plugin::Database::Core',
    AUTHOR           => q{David Precious <davidp@preshweb.co.uk>},
    VERSION_FROM     => 'lib/Dancer/Plugin/Database/Core.pm',
    ABSTRACT_FROM    => 'lib/Dancer/Plugin/Database/Core.pm',
    LICENSE          => 'artistic_2',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'DBI'        => 0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Dancer-Plugin-Database-Core-*' },
    META_MERGE =>
              {
              "meta-spec" => { version => 2 },
              bugtracker  => {
                web => 'https://github.com/bigpresh/Dancer-Plugin-Database/issues',
               },
               resources =>
               {
                repository => 
                {
                 type => 'git',
                 web => 'https://github.com/bigpresh/Dancer-Plugin-Database',
                },
               },
              },
);