-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
32 lines (29 loc) · 1.01 KB
/
Makefile.PL
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
29
30
31
32
use ExtUtils::MakeMaker;
# Note to self: cp t/07.phrase_norm.t t/08.cpanel_norm.t && perl -pi -e 's/Norm.pm/cPanel.pm/g;s/::Norm/::cPanel/g' t/08.cpanel_norm.t
WriteMakefile(
NAME => 'Locale::Maketext::Utils',
VERSION_FROM => 'lib/Locale/Maketext/Utils.pm',
PREREQ_PM => {
'Locale::Maketext' => 1.23,
'Locales' => 0.32,
'DateTime' => 0,
'Net::IDN::Encode' => 2.005,
'IO::Interactive::Tiny' => 0,
'Web::Detect' => 0.04,
'Module::Want' => 0,
'Encode' => 0,
'Test::More' => 0,
'Test::Carp' => 0,
'Test::Warn' => 0,
'Test::NoWarnings' => 0,
# 'Sub::Todo' => 0,
},
(
$] >= 5.005
? (
ABSTRACT_FROM => 'lib/Locale/Maketext/Utils.pod',
AUTHOR => 'Daniel Muey, L<http://drmuey.com/cpan_contact.pl>'
)
: ()
),
);