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
|
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Geo::Constants',
VERSION_FROM => 'lib/Geo/Constants.pm',
ABSTRACT_FROM => 'lib/Geo/Constants.pm',
LICENSE => 'perl',
PREREQ_PM => {
'Exporter' => 0,
'Test::Simple' => 0.44, #Tests
},
'META_MERGE' => {
'resources' => {
'repository' => {
'web' => 'https://github.com/mrdvt92/perl-Geo-Constants.git',
'url' => 'git@github.com:mrdvt92/perl-Geo-Constants.git',
'type' => 'git'
},
'homepage' => 'https://github.com/mrdvt92/perl-Geo-Constants',
'bugtracker' => {
'web' => 'https://github.com/mrdvt92/perl-Geo-Constants/issues'
}
},
'meta-spec' => {
'version' => 2
}
},
);
|