File: Build.PL

package info (click to toggle)
libcgi-application-plugin-authorization-perl 0.07%2B~cs0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 356 kB
  • sloc: perl: 1,237; makefile: 17
file content (24 lines) | stat: -rw-r--r-- 636 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use Module::Build;

Module::Build->new(
    module_name => 'CGI::Application::Plugin::Authorization',
    license => 'perl',
    requires => {
        'CGI::Application' => 4,
        'Class::ISA' => 0,
        'UNIVERSAL::require' => 0,
    },
    recommends => {
        'CGI::Application::Plugin::Authentication' => 0,
        'Apache::Htgroup' => 0,
    },
    build_requires => {
        'Test::More' => 0,
        'Test::Warn' => 0,
        'Test::Exception' => 0,
    },
    create_makefile_pl => 'traditional',
    dist_author => 'Cees Hek <ceeshek@gmail.com>',
    add_to_cleanup => [qw(t/sqlite.db)],
)->create_build_script;