File: Build.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-- 581 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 Module::Build;

my $builder = Module::Build->new(
    module_name       => 'Catalyst::Plugin::Log::Dispatch',
    license           => 'perl',
    dist_author       => 'Shota Takayama <shot[at]bindstorm.jp>',
    dist_version_from => 'lib/Catalyst/Plugin/Log/Dispatch.pm',
    requires          => {
        'Test::More'         => 0,
        'Log::Dispatch'      => '2.13',
        'Catalyst'           => '5.65',
        'UNIVERSAL::require' => 0
    },
    add_to_cleanup => ['Catalyst-Plugin-Log-Dispatch-*'],
);

$builder->create_build_script();