X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=8a8f928bd11a23e3886ed53da0d629cc2207af2a;hb=4ed4b75a2aee969143762220e055a126f1de84df;hp=9ad9836d4af634f6deff20b71b4853e841b138ac;hpb=b3165ff1ee361406e421b31334adc2434aa94ac1;p=perl%2Fmodules%2FSub-Op.git diff --git a/Makefile.PL b/Makefile.PL index 9ad9836..8a8f928 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -24,6 +24,7 @@ my %META = ( 'ExtUtils::MakeMaker' => 0, }, build_requires => { + 'B::Deparse' => 0, 'Cwd' => 0, 'ExtUtils::Depends' => 0, 'ExtUtils::MakeMaker' => 0, @@ -35,7 +36,7 @@ my %META = ( }, 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", @@ -67,10 +68,16 @@ WriteMakefile( MIN_PERL_VERSION => 5.010, META_MERGE => \%META, dist => { - PREOP => "pod2text $file > \$(DISTVNAME)/README", + PREOP => "pod2text -u $file > \$(DISTVNAME)/README", COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, - FUNCLIST => [ qw/sub_op_register boot_Sub__Op/ ], + FUNCLIST => [ qw[ + boot_Sub__Op + sub_op_init + sub_op_register + sub_op_dup + sub_op_free + ] ], %ed_vars, );