-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
54 lines (50 loc) · 1.5 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
49
50
51
52
53
54
use strict;
use warnings;
use ExtUtils::MakeMaker;
my(%param, $emv, $name);
%param = (
NAME => 'No::Worries',
AUTHOR => 'Lionel Cons <[email protected]>',
VERSION => '1.7',
ABSTRACT_FROM => 'lib/No/Worries.pm',
LICENSE => 'perl',
PL_FILES => {},
BUILD_REQUIRES => {
'File::Temp' => 0,
'Getopt::Long' => 0,
# optional: Pod::Coverage
'Test::More' => 0,
# optional: Test::Pod
# optional: Test::Pod::Coverage
},
PREREQ_PM => {
'Carp' => 0,
'Config' => 0,
'Encode' => 0,
'Fcntl' => 0,
'HTTP::Date' => 0,
'IO::Handle' => 0,
'IO::Select' => 0,
'POSIX' => 0,
'Params::Validate' => 0,
'Sys::Hostname' => 0,
'Sys::Syslog' => 0,
'Time::HiRes' => 0,
'URI::Escape' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' },
clean => { FILES => 'No-Worries-*' },
);
($emv = $ExtUtils::MakeMaker::VERSION) =~ s/_//;
if ($emv < 6.5503) {
# missing BUILD_REQUIRES
foreach $name (keys(%{ $param{BUILD_REQUIRES} })) {
$param{PREREQ_PM}{$name} = $param{BUILD_REQUIRES}{$name};
}
delete($param{BUILD_REQUIRES});
}
if ($emv < 6.31) {
# missing LICENSE
delete($param{LICENSE});
}
WriteMakefile(%param);