Debian lenny version packages
[pkg-perl] / deb-src / libpod-simple-perl / libpod-simple-perl-3.07 / Makefile.PL
1 # This -*- perl -*- script writes the Makefile for Pod::Simple
2 #
3 # Time-stamp: "2004-05-24 00:21:20 ADT"
4 #
5 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
6 # the contents of the Makefile that is written.
7 #
8
9 require 5;
10
11 use strict;
12 use ExtUtils::MakeMaker;
13
14 WriteMakefile(
15   NAME          => 'Pod::Simple',
16   VERSION_FROM  => 'lib/Pod/Simple.pm',
17   ABSTRACT_FROM => 'lib/Pod/Simple.pod',
18   # INSTALLDIRS        => 'perl',
19   PREREQ_PM             => {
20    'Text::Wrap' => '98.112902',
21    'Pod::Escapes' => '1.04',
22
23    # RT#29439
24    'Test'         => '1.25',
25
26    # And finally, things I don't have any particular version in mind for:
27    map {; $_ => 0 } qw[
28     File::Spec File::Basename Cwd Config Carp overload Symbol strict
29     constant integer File::Find Test::More
30    ]
31   },
32 );
33
34
35 package MY;
36
37 sub libscan
38 { # Determine things that should *not* be installed
39     my($self, $path) = @_;
40     return '' if $path =~ m/~/;
41     $path;
42 }
43
44 __END__