-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
41 lines (38 loc) · 1.25 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
use ExtUtils::MakeMaker;
use strict;
use warnings;
# Call 'perldoc ExtUtils::MakeMaker' for details of how to influence
# the contents of the Makefile that is written.
my %WriteMakefileArgs = (
NAME => 'URI::tel',
VERSION_FROM => 'lib/URI/tel.pm',
AUTHOR => 'Jacques Deguest (jack@deguest.jp)',
ABSTRACT => 'Implementation of rfc3966 for tel URI',
INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'),
PREREQ_PM => {
'Test::More' => 0,
'overload' => 0,
'overloading' => 0,
'strict' => 0,
'parent' => 0,
'URI' => 0
},
LICENSE => 'perl_5',
MIN_PERL_VERSION => 5.6.0,
( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? () : ( META_MERGE => {
'meta-spec' => { version => 2 },
dynamic_config => 1,
resources => {
# homepage => undef,
repository => {
url => 'git@github.com:jackdeguest/URI-tel.git',
web => 'https://github.com/jackdeguest/URI-tel',
type => 'git',
},
# bugtracker => {
# web => undef,
# },
},
})),
);
WriteMakefile(%WriteMakefileArgs);