-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
76 lines (59 loc) · 1.98 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#! perl -w
use strict ;
require 5.006 ;
$::VERSION = '2.213' ;
use lib '.';
use private::MakeUtil;
use ExtUtils::MakeMaker 5.16 ;
UpDowngrade(getPerlFiles('MANIFEST'))
unless $ENV{PERL_CORE};
WriteMakefile(
NAME => 'IO::Compress::Lzf',
VERSION_FROM => 'lib/IO/Compress/Lzf.pm',
'dist' => { COMPRESS => 'gzip',
TARFLAGS => '-chvf',
SUFFIX => 'gz',
DIST_DEFAULT => 'MyTrebleCheck tardist',
},
(
$ENV{SKIP_FOR_CORE}
? (MAN3PODS => {})
: (PREREQ_PM => { 'Compress::LZF' => 0,
'IO::Compress::Base' => $::VERSION,
'IO::Uncompress::Base' => $::VERSION,
$] >= 5.005 && $] < 5.006
? ('File::BSDGlob' => 0)
: () }
)
),
(
$] >= 5.005
? (ABSTRACT_FROM => 'lib/IO/Compress/Lzf.pm',
AUTHOR => 'Paul Marquess <pmqs@cpan.org>')
: ()
),
( eval { ExtUtils::MakeMaker->VERSION(6.46) }
? ( META_MERGE => {
"meta-spec" => { version => 2 },
no_index => {
directory => [ 't', 'private' ],
},
resources => {
bugtracker => {
web => 'https://github.com/pmqs/IO-Compress-Lzf/issues'
},
homepage => 'https://github.com/pmqs/IO-Compress-Lzf',
repository => {
type => 'git',
url => 'git://github.com/pmqs/IO-Compress-Lzf.git',
web => 'https://github.com/pmqs/IO-Compress-Lzf',
},
},
}
)
: ()
),
((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl') : ()),
) ;
# end of file Makefile.PL