File: Makefile.PL

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

WriteMakefile(
    NAME                => 'CGI::Application::Plugin::DBIProfile',
    AUTHOR              => 'Sam Tregar <sam@tregar.com>',
    VERSION_FROM        => 'lib/CGI/Application/Plugin/DBIProfile.pm',
    ABSTRACT_FROM       => 'lib/CGI/Application/Plugin/DBIProfile.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'IO::Scalar'       => 0,
        'Data::JavaScript' => 0,
        'Symbol'           => 0,
        'Test::More'       => 0,
        'CGI::Application' => 4,
        'DBI'              => 1.49,
        'Time::HiRes'      => 0,
        'HTML::Template'   => 2.6,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'CGI-Application-Plugin-DBIProfile-*' },
);