File: Makefile.PL

package info (click to toggle)
libcatalyst-plugin-log-dispatch-perl 0.121-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 88 kB
  • sloc: perl: 268; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 622 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Catalyst::Plugin::Log::Dispatch',
    AUTHOR        => 'Shota Takayama <shot[at]bindstorm.jp>',
    VERSION_FROM  => 'lib/Catalyst/Plugin/Log/Dispatch.pm',
    ABSTRACT_FROM => 'lib/Catalyst/Plugin/Log/Dispatch.pm',
    PREREQ_PM     => {
        'Test::More'            => 0,
        'Log::Dispatch'         => '2.13',
        'Catalyst'              => '5.65',
        'UNIVERSAL::require'    => 0,
    },

    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'Catalyst-Plugin-Log-Dispatch-*' },
);