df93a6cbb70962d5b8808d8231dca3f237bced7a
[p5sagit/p5-mst-13.2.git] / ext / Compress / Zlib / Makefile.PL
1 #! perl -w
2
3 use strict ;
4 require 5.004 ;
5
6 use private::MakeUtil;
7 use ExtUtils::MakeMaker 5.16 ;
8
9 UpDowngrade(getPerlFiles('MANIFEST')) 
10     unless $ENV{PERL_CORE};
11
12 WriteMakefile( 
13     NAME         => 'Compress::Zlib',
14     VERSION_FROM => 'lib/Compress/Zlib.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,
26                                     'IO::Compress::Base::Common'    => 0,
27                                     'IO::Uncompress::Base'          => 0,
28                                     'IO::Compress::Gzip'            => 0,
29                                     'IO::Compress::Gzip::Constants' => 0,
30                                     'IO::Uncompress::Gunzip'        => 0,
31                                     'Scalar::Util'                  => 0,
32                           }
33               )
34     ),
35        
36     (
37     $] >= 5.005
38         ? (ABSTRACT_FROM => 'lib/Compress/Zlib.pm',
39             AUTHOR       => 'Paul Marquess <pmqs@cpan.org>')
40         : ()
41     ),
42
43 ) ;
44
45 # end of file Makefile.PL
46