File: Build.PL

package info (click to toggle)
libcgi-application-plugin-authentication-perl 0.25%2B~cs0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,560 kB
  • sloc: perl: 11,362; makefile: 29; javascript: 6
file content (34 lines) | stat: -rw-r--r-- 1,373 bytes parent folder | download | duplicates (6)
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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'CGI::Application::Plugin::Authentication::Driver::DBIC',
    license             => 'perl',
    dist_author         => 'Jaldhar H. Vyas <jaldhar@braincells.com>',
    dist_version_from   => 'lib/CGI/Application/Plugin/Authentication/Driver/DBIC.pm',
    build_requires => {
        'CGI'                                      => 0,
        'CGI::Application::Plugin::Authentication' => 0.06,
        'DBIx::Class'                              => 0,
        'File::Path'                               => 0,
        'Test::More'                               => 0,
    },
    recommends => {
        'CGI::Application::Plugin::Session'        => 0,
        'DBD::SQLite'                              => 0,
        'Digest::MD5'                              => 0,
        'Module::Signature'                        => 0,
        'Test::Pod'                                => 1.14,
        'Test::Pod::Coverage'                      => 1.04,
    },
    requires => {
        'CGI::Application::Plugin::Authentication' => 0.06,
        'DBIx::Class'                              => 0,
    },
    add_to_cleanup      => [ 'CGI-Application-Plugin-Authentication-Driver-DBIC-*' ],
    create_makefile_pl => 'traditional',
    sign => 1,
);

$builder->create_build_script();