-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
37 lines (32 loc) · 963 Bytes
/
Makefile.PL
File metadata and controls
37 lines (32 loc) · 963 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
31
32
33
34
35
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %conf = (
NAME => 'Geo::Google::MapObject',
AUTHOR => 'Nicholas Bamber <nicholas@periapt.co.uk>',
VERSION_FROM => 'lib/Geo/Google/MapObject.pm',
ABSTRACT_FROM => 'lib/Geo/Google/MapObject.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::JSON' => 0,
'Test::Deep' => 0,
'HTML::Template::Pluggable' => 0,
'HTML::Entities' => 0,
'Scalar::Util' => 0,
'Math::Trig' => '1.2',
'JSON'=>0
},
META_MERGE => {
resources => {
repository => 'http://github.com/periapt/geo-google-mapobject',
},
},
LICENSE => 'perl',
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Geo-Google-MapObject-*' },
);
unless (eval { ExtUtils::MakeMaker->VERSION(6.46) }) {
delete $conf{META_MERGE};
}
WriteMakefile(%conf);