Update Compress Modules to version 2.002
[p5sagit/p5-mst-13.2.git] / ext / IO / Compress / Zlib / Makefile.PL
CommitLineData
25f0751f 1#! perl -w
2
3use strict ;
4require 5.004 ;
5
6use private::MakeUtil;
7use ExtUtils::MakeMaker 5.16 ;
8
9UpDowngrade(getPerlFiles('MANIFEST'))
10 unless $ENV{PERL_CORE};
11
12WriteMakefile(
13 NAME => 'IO::Compress::Zlib',
14 VERSION_FROM => 'lib/IO/Compress/Gzip.pm',
15 'dist' => { COMPRESS => 'gzip',
16 TARFLAGS => '-chvf',
17 SUFFIX => 'gz',
18 DIST_DEFAULT => 'MyTrebleCheck tardist',
19 },
20
21 (
22 $ENV{SKIP_FOR_CORE}
23 ? (MAN3PODS => {})
24 : (PREREQ_PM => { 'Compress::Raw::Zlib' => 0,
25 'IO::Compress::Base' => 0,
cb7abd7f 26 'IO::Uncompress::Base' => 0,
25f0751f 27 $] >= 5.005 && $] < 5.006
28 ? ('File::BSDGlob' => 0)
29 : () }
30 )
31 ),
32
33 (
34 $] >= 5.005
35 ? (ABSTRACT => 'Perl interface to zlib',
36 AUTHOR => 'Paul Marquess <pmqs@cpan.org>')
37 : ()
38 ),
39
40) ;
41
42# end of file Makefile.PL
43