File: Build.PL

package info (click to toggle)
libcgi-application-plugin-linkintegrity-perl 0.06-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 308 kB
  • sloc: perl: 269; sh: 7; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 834 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
24
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'CGI::Application::Plugin::LinkIntegrity',
    license             => 'perl',
    dist_author         => 'Michael Graham <mag-perl@occamstoothbrush.com>',
    dist_version_from   => 'lib/CGI/Application/Plugin/LinkIntegrity.pm',
    requires => {
        'Test::More'       => 0,
        'CGI::Application' => 4.0,  # need hooks
        'URI'              => 0,
        'URI::Escape'      => 0,  # included in URI
        'URI::QueryParam'  => 0,  # included in URI
        'Digest::HMAC'     => 0,
        'Digest::MD5'      => 0,
        'CGI'              => 2.37,
    },
    add_to_cleanup      => [ 'CGI-Application-Plugin-LinkIntegrity-*' ],
    create_makefile_pl  => 'traditional',
);

$builder->create_build_script();