File: Build.PL

package info (click to toggle)
libcgi-application-plugin-messagestack-perl 0.34-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 228 kB
  • sloc: perl: 1,031; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 772 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
20
21
22
23
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'CGI::Application::Plugin::MessageStack',
    license             => 'perl',
    dist_author         => 'Jason Purdy <Jason@Purdy.INFO>',
    dist_version_from   => 'lib/CGI/Application/Plugin/MessageStack.pm',
    requires => {
        'Test::More'                            => 0,
        'CGI::Application'                      => 4.01,
    },
    recommends => {
        'CGI::Application::Plugin::Session'     => 0,
	'CGI::Application::Plugin::TT'		=> 0.09,
    },
    create_readme       => 1,
    create_makefile_pl	=> 'traditional',
    add_to_cleanup      => [ 'CGI-Application-Plugin-MessageStack-*', 't/cgisess_*' ],
);

$builder->create_build_script();