File: Build.PL

package info (click to toggle)
libcgi-application-plugin-dbiprofile-perl 0.07-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid
  • size: 156 kB
  • sloc: perl: 710; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 853 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
25
26
27
28
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'CGI::Application::Plugin::DBIProfile',
    license             => 'perl',
    dist_author         => 'Joshua I Miller <unrtst@cpan.org>',
    dist_version_from   => 'lib/CGI/Application/Plugin/DBIProfile.pm',
    requires => {
        'IO::Scalar'       => 0,
        'Data::JavaScript' => 0,
        'Symbol'           => 0,
        'Test::More'       => 0,
        'CGI::Application' => 4,
        'DBI'              => 1.49,
        'Time::HiRes'      => 0,
        'HTML::Template'   => 2.6,
    },
    recommends => {
        'GD::Graph'        => 0,
        'SVG::TT::Graph'   => 0,
    },
    add_to_cleanup      => [ 'CGI-Application-Plugin-DBIProfile-*' ],
    create_makefile_pl  => 'traditional',
);

$builder->create_build_script();