Codebase list texinfo / debian/4.13.91.dfsg.1-2 tp / Makefile.PL
debian/4.13.91.dfsg.1-2

Tree @debian/4.13.91.dfsg.1-2 (Download .tar.gz)

Makefile.PL @debian/4.13.91.dfsg.1-2raw · history · blame

use 5.00405;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'Texinfo',
    VERSION_FROM      => 'Texinfo/Parser.pm', # finds $VERSION
    ABSTRACT          => 'Texinfo Parser and Converters',
    PREREQ_PM         => {"Encode" => 0,
                          "Data::Dumper" => 0,
                          "File::Spec" => 0,
                          "Config" => 0,
                          "Carp" => 0,
                          "Unicode::Normalize" => 0,
                          "File::Basename" => 0,
                          "File::Copy" => 0,
                          "Getopt::Long" => 0,
                          "Unicode::EastAsianWidth" => 0,
                          "Text::Unidecode" => 0,
                          "Locale::Messages" => 0,
                         },
    BUILD_REQUIRES    => {"Data::Compare" => 0,
                          "Test::Deep" => 0,
                          "Test::More" => "0.88",
                          "Storable" => 0,
                         },
    PMLIBDIRS         => [ 'Texinfo', 'LocaleData', 'DebugTexinfo' ],
    EXE_FILES         => [ 'texi2any' ],
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (
       AUTHOR         => 'Patrice Dumas <pertusus@free.fr>') : ()),
);

#package MY;
#sub test 
#{
#  my $inherited = shift->SUPER::test(@_);
#  print STDERR "|$inherited|\n";
#  $inherited;
#}