File: Makefile.PL

package info (click to toggle)
libcgi-application-plugin-requiressl-perl 0.04-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 100 kB
  • sloc: perl: 198; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 656 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'CGI::Application::Plugin::RequireSSL',
    AUTHOR              => 'Dan Horne <dhorne@cpan.org>',
    VERSION_FROM        => 'lib/CGI/Application/Plugin/RequireSSL.pm',
    ABSTRACT_FROM       => 'lib/CGI/Application/Plugin/RequireSSL.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'          => 0,
        'Attribute::Handlers' => 0,
        'CGI::Application'    => 4.01,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'CGI-Application-Plugin-RequireSSL-*' },
);