-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
21 lines (20 loc) · 717 Bytes
/
Makefile.PL
File metadata and controls
21 lines (20 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Lingua::RU::Inflect',
AUTHOR => q{Alexander Sapozhnikov <shoorick@cpan.org>},
VERSION_FROM => 'lib/Lingua/RU/Inflect.pm',
ABSTRACT => 'Lingua::RU::Inflect - Inflect russian names',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'List::MoreUtils' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Lingua-RU-Inflect-*' },
);
# ABSTRACT_FROM => 'lib/Lingua/RU/Inflect.pm',