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