File: Makefile.PL

package info (click to toggle)
libtemplate-plugin-lingua-en-inflect-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 128 kB
  • sloc: perl: 236; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 780 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
23
24
25
26
27
28
#!/usr/bin/perl

use strict;
use warnings;
use 5.006;

use ExtUtils::MakeMaker;

WriteMakefile(
    AUTHOR              => 'Barbie <barbie@cpan.org>',
    NAME                => 'Template::Plugin::Lingua::EN::Inflect',
    VERSION_FROM        => 'lib/Template/Plugin/Lingua/EN/Inflect.pm',
    ABSTRACT            => 'TT2 interface to Lingua::EN::Inflect module',
    NO_META             => 1,
    PREREQ_PM => {

        # prereqs
        'Template'                          => '2.07',
        'Template::Plugin'                  => '2.07',
        'Lingua::EN::Inflect'               => '0',

        # for testing
        'IO::File'                          => 0,
        'Template::Test'                    => 0,
        'Test::More'                        => 0.70

    },
);