File: Build.PL

package info (click to toggle)
libcgi-application-plugin-forward-perl 1.06-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: perl: 482; sh: 7; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'CGI::Application::Plugin::Forward',
    license             => 'perl',
    dist_author         => 'Michael Graham <mag-perl@occamstoothbrush.com>',
    dist_version_from   => 'lib/CGI/Application/Plugin/Forward.pm',
    requires => {
        'CGI::Application' => 0,
        'Test::More'       => 0,
    },
    recommends => {
        'CGI::Application::Plugin::AutoRunmode' => 0.09,
    },
    add_to_cleanup      => [ 'CGI-Application-Plugin-Forward-*' ],
    create_makefile_pl  => 'traditional',
);

$builder->create_build_script();