-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
30 lines (29 loc) · 973 Bytes
/
Makefile.PL
File metadata and controls
30 lines (29 loc) · 973 Bytes
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
use 5.018;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Text::ASCII::Convert',
VERSION_FROM => 'lib/Text/ASCII/Convert.pm',
ABSTRACT_FROM => 'lib/Text/ASCII/Convert.pm',
AUTHOR => 'Kent Oyer <kent@mxguardian.net>',
LICENSE => 'GPL_3',
MIN_PERL_VERSION => '5.018',
PREREQ_PM => {
'strict' => 0,
'warnings' => 0,
'Encode' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/mxguardian/Text-ASCII-Convert.git',
web => 'https://github.com/mxguardian/Text-ASCII-Convert',
},
bugtracker => {
web => 'https://github.com/mxguardian/Text-ASCII-Convert/issues'
},
homepage => 'https://github.com/mxguardian/Text-ASCII-Convert',
},
},
);