Rename ext/Sys/Hostname to ext/Sys-Hostname
[p5sagit/p5-mst-13.2.git] / ext / MIME-Base64 / Makefile.PL
CommitLineData
e1839706 1require 5.006;
6fba102d 2use ExtUtils::MakeMaker;
3
d491518e 4my @makefileopts;
5if (grep { $_ eq 'PERL_CORE=1' } @ARGV) {
6 push @makefileopts, MAN3PODS => {};
7}
8if ($] >= 5.008) {
9 push @makefileopts, INSTALLDIRS => 'perl';
10}
11
6fba102d 12WriteMakefile(
13 NAME => 'MIME::Base64',
14 VERSION_FROM => 'Base64.pm',
15 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
d491518e 16 @makefileopts,
6fba102d 17);