X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=4ee7ab16677c357b5ac090f10fd3220f2584898a;hb=671ed470650e4afb947dd536f7b89d1d9503719b;hp=9a8580b5cfde30b57bfd5cb818153738b5524ec5;hpb=d2b386eb02383027db5d23d26d9c14e368e4e66e;p=perl%2Fmodules%2FScalar-Vec-Util.git diff --git a/Makefile.PL b/Makefile.PL index 9a8580b..4ee7ab1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,36 +4,43 @@ use strict; use warnings; use ExtUtils::MakeMaker; +use Config; + BEGIN { - eval { require Config }; - die 'OS unsupported' if $@; - Config->import(qw/%Config/); - eval { require File::Spec }; - die 'OS unsupported' if $@; + local $@; + eval { require File::Spec; 1 } or die 'OS unsupported'; } -# Inspired from Module::Install::Can -print "Checking for a valid C compiler in the PATH... "; -my @ccs = ($Config{cc}); -unshift @ccs, $ENV{CC} if $ENV{CC}; my $cc; +for (@ARGV) { + if (/^CC=(.*)/) { + $cc = $1; + last; + } +} +if (defined $cc) { + print "Forcing the use of $cc as the C compiler.\n"; +} else { + # Inspired from Module::Install::Can + print "Checking for a valid C compiler in the PATH... "; + my @ccs = ($Config{cc}); + unshift @ccs, $ENV{CC} if $ENV{CC}; CC: -for my $c (@ccs) { - for my $dir (split /$Config{path_sep}/, $ENV{PATH}) { - my $abs = File::Spec->catfile($dir, $c); - if (-x $abs or MM->maybe_command($abs)) { - $cc = $c; - last CC; + for my $c (@ccs) { + for my $dir (split /$Config{path_sep}/, $ENV{PATH}) { + my $abs = File::Spec->catfile($dir, $c); + if (-x $abs or MM->maybe_command($abs)) { + $cc = $c; + print $cc, "\n"; + last CC; + } } } + print "none\n" unless defined $cc; } + my @C; -if ($cc) { - push @C, 'Util.c'; - print $cc, "\n"; -} else { - print "none\n"; -} +push @C, 'Util.c' if defined $cc; my @DEFINES; @@ -74,6 +81,26 @@ if (not is_little_endian()) { my $dist = 'Scalar-Vec-Util'; +(my $name = $dist) =~ s{-}{::}g; + +(my $file = $dist) =~ s{-}{/}g; +$file = "lib/$file.pm"; + +my %PREREQ_PM = ( + 'Exporter' => 0, + 'Carp' => 0, + 'XSLoader' => 0, + 'base' => 0, +); + +my %BUILD_REQUIRES = ( + 'Config' => 0, + 'ExtUtils::MakeMaker' => 0, + 'File::Spec' => 0, + 'Test::More' => 0, + %PREREQ_PM, +); + my %META = ( configure_requires => { 'Config' => 0, @@ -81,12 +108,11 @@ my %META = ( 'File::Spec' => 0, }, build_requires => { - 'Config' => 0, - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, + %BUILD_REQUIRES, }, + dynamic_config => 1, resources => { - bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", + bugtracker => "http://rt.cpan.org/Dist/Display.html?Name=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", @@ -94,28 +120,25 @@ my %META = ( ); WriteMakefile( - NAME => 'Scalar::Vec::Util', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/Scalar/Vec/Util.pm', - ABSTRACT_FROM => 'lib/Scalar/Vec/Util.pm', - PL_FILES => {}, - C => \@C, - @DEFINES, - PREREQ_PM => { - 'Exporter' => 0, - 'Carp' => 0, - 'XSLoader' => 0 - }, - MIN_PERL_VERSION => 5.006, - META_MERGE => \%META, - dist => { - PREOP => 'pod2text lib/Scalar/Vec/Util.pm > $(DISTVNAME)/README', - COMPRESS => 'gzip -9f', SUFFIX => 'gz' - }, - clean => { - FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" - }, + NAME => $name, + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => $file, + ABSTRACT_FROM => $file, + PL_FILES => {}, + C => \@C, + @DEFINES, + BUILD_REQUIRES => \%BUILD_REQUIRES, + PREREQ_PM => \%PREREQ_PM, + MIN_PERL_VERSION => '5.006', + META_MERGE => \%META, + dist => { + PREOP => "pod2text -u $file > \$(DISTVNAME)/README", + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt*" + }, ); 1; @@ -124,7 +147,7 @@ package MY; sub postamble { my $cv = join ' -coverage ', 'cover', - qw/statement branch condition path subroutine time/; + qw; <