File: Makefile.PL

package info (click to toggle)
libmodule-starter-plugin-cgiapp-perl 0.44-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 524 kB
  • sloc: perl: 1,119; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 747 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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => '<tmpl_var distro>',
    VERSION_FROM        => '<tmpl_var main_pm_file>',
    ABSTRACT_FROM       => '<tmpl_var main_pm_file>',
    AUTHOR              => '<tmpl_var author> <<tmpl_var email>>',
    LICENSE             => '<tmpl_var license>',
    PL_FILES            => {},
    PREREQ_PM => {
        'CGI::Application'              => 4.04,
        'HTML::Template'                => 0,
        'Test::More'                    => 0,
        'Test::WWW::Mechanize::CGIApp'  => 0,
    },
    SIGN => 1,
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => '<tmpl_var distro>-*' },
);