-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.PL
44 lines (43 loc) · 1.29 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
33
34
35
36
37
38
39
40
41
42
43
44
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Locales',
AUTHOR => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
VERSION_FROM => 'lib/Locales.pm',
ABSTRACT_FROM => 'lib/Locales.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Carp' => 0,
'File::Slurp' => 0,
'ExtUtils::MakeMaker' => '6.56',
'Module::Want' => '0.6',
'String::UnicodeUTF8' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::Carp' => 0,
'File::Slurp' => 0,
'Module::Want' => '0.6',
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 6.56,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Locales-*' },
META_ADD => {
'meta-spec' => { version => 2 },
dynamic_config => 0,
resources => {
repository => {
url => 'https://github.com/drmuey/p5-Locales.git',
web => 'https://github.com/drmuey/p5-Locales',
type => 'git',
},
bugtracker => {
web => 'https://github.com/drmuey/p5-Locales/issues',
},
},
},
);