X-Git-Url: http://git.maemo.org/git/?p=dh-make-perl;a=blobdiff_plain;f=dev%2Farm%2Flibpod-simple-perl%2Flibpod-simple-perl-3.07%2FMakefile.PL;fp=dev%2Farm%2Flibpod-simple-perl%2Flibpod-simple-perl-3.07%2FMakefile.PL;h=078756a58af760081d6b682eac236773fe822d68;hp=0000000000000000000000000000000000000000;hb=f477fa73365d491991707e7ed9217b48d6994551;hpb=da95c414033799c3a62606f299c3c00b5c77ca11 diff --git a/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/Makefile.PL b/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/Makefile.PL new file mode 100644 index 0000000..078756a --- /dev/null +++ b/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/Makefile.PL @@ -0,0 +1,44 @@ +# This -*- perl -*- script writes the Makefile for Pod::Simple +# +# Time-stamp: "2004-05-24 00:21:20 ADT" +# +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. +# + +require 5; + +use strict; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Pod::Simple', + VERSION_FROM => 'lib/Pod/Simple.pm', + ABSTRACT_FROM => 'lib/Pod/Simple.pod', + # INSTALLDIRS => 'perl', + PREREQ_PM => { + 'Text::Wrap' => '98.112902', + 'Pod::Escapes' => '1.04', + + # RT#29439 + 'Test' => '1.25', + + # And finally, things I don't have any particular version in mind for: + map {; $_ => 0 } qw[ + File::Spec File::Basename Cwd Config Carp overload Symbol strict + constant integer File::Find Test::More + ] + }, +); + + +package MY; + +sub libscan +{ # Determine things that should *not* be installed + my($self, $path) = @_; + return '' if $path =~ m/~/; + $path; +} + +__END__