File: Makefile.PL

package info (click to toggle)
libmodule-starter-plugin-tt2-perl 0.125-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: perl: 151; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 693 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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Module::Starter::Plugin::TT2',
    AUTHOR              => 'Ricardo SIGNES <rjbs@cpan.org>',
    VERSION_FROM        => 'lib/Module/Starter/Plugin/TT2.pm',
    ABSTRACT_FROM       => 'lib/Module/Starter/Plugin/TT2.pm',
    LICENSE             => 'perl',
    PL_FILES            => {},
    PREREQ_PM => {
		    'Module::Starter' => 1.470, # first v. with Module::Install, ::Template
        'Test::More'      => 0,
        'Template'        => 2,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Module-Starter-Plugin-TT2-*' },
);