source: vendor/perl/5.8.8/ext/MIME/Base64/Makefile.PL@ 3181

Last change on this file since 3181 was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 376 bytes
Line 
1require 5.006;
2use ExtUtils::MakeMaker;
3
4my @makefileopts;
5if (grep { $_ eq 'PERL_CORE=1' } @ARGV) {
6 push @makefileopts, MAN3PODS => {};
7}
8if ($] >= 5.008) {
9 push @makefileopts, INSTALLDIRS => 'perl';
10}
11
12WriteMakefile(
13 NAME => 'MIME::Base64',
14 VERSION_FROM => 'Base64.pm',
15 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
16 @makefileopts,
17);
Note: See TracBrowser for help on using the repository browser.