-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
42 lines (31 loc) · 966 Bytes
/
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
#!/usr/bin/perl
use 5.006;
use strict;
use warnings;
no warnings 'syntax';
use ExtUtils::MakeMaker;
my %args = (
NAME => 'Geography::States',
VERSION_FROM => 'lib/Geography/States.pm',
ABSTRACT_FROM => 'lib/Geography/States.pm',
MIN_PERL_VERSION => 5.006,
AUTHOR => 'Abigail <[email protected]>',
LICENSE => 'mit',
META_MERGE => {
resources => {
repository => 'git://github.com/Abigail/geography--states.git',
},
},
);
my %filter = (
MIN_PERL_VERSION => '6.48',
META_MERGE => '6.46',
AUTHOR => '6.07',
ABSTRACT_FROM => '6.07',
LICENSE => '6.07',
);
delete $args {$_} for grep {defined $filter {$_} &&
$ExtUtils::MakeMaker::VERSION lt $filter {$_}}
keys %args;
WriteMakefile %args;
__END__