-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMakefile.PL
48 lines (44 loc) · 1.16 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
42
43
44
45
46
47
48
require 5.004;
use ExtUtils::MakeMaker;
my @makefileopts;
if ($] >= 5.008 && $] < 5.012) {
push @makefileopts, INSTALLDIRS => 'perl';
}
WriteMakefile(
NAME => 'MIME::Base64',
VERSION_FROM => 'Base64.pm',
@makefileopts,
ABSTRACT => 'The RFC 2045 encodings; base64 and quoted-printable',
AUTHOR => 'Gisle Aas <[email protected]>',
LICENSE => 'perl',
MIN_PERL_VERSION => 5.004,
PREREQ_PM => {
'XSLoader' => 0,
},
META_MERGE => {
resources => {
repository => 'https://github.com/gisle/mime-base64',
}
},
);
BEGIN {
# compatibility with older versions of MakeMaker
my $developer = -d ".git";
my %mm_req = (
LICENCE => 6.31,
META_MERGE => 6.45,
META_ADD => 6.45,
MIN_PERL_VERSION => 6.48,
);
undef(*WriteMakefile);
*WriteMakefile = sub {
my %arg = @_;
for (keys %mm_req) {
unless (eval { ExtUtils::MakeMaker->VERSION($mm_req{$_}) }) {
warn "$_ $@" if $developer;
delete $arg{$_};
}
}
ExtUtils::MakeMaker::WriteMakefile(%arg);
};
}