Debian lenny version packages
[pkg-perl] / deb-src / libpod-escapes-perl / libpod-escapes-perl-1.04 / Makefile.PL
1 # This -*- perl -*- script writes the Makefile for Class::BlackHole
2 # Time-stamp: "2004-04-27 19:28:38 ADT"
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 require 5.004;
6 use strict;
7 use ExtUtils::MakeMaker;
8
9 WriteMakefile(
10     'NAME'      => 'Pod::Escapes',
11     'VERSION_FROM' => 'lib/Pod/Escapes.pm', # finds $VERSION
12     'dist'        => { COMPRESS => 'gzip -6f', SUFFIX => 'gz', },
13 );
14
15 package MY;
16
17 sub libscan
18 { # Determine things that should *not* be installed
19     my($self, $path) = @_;
20     return '' if $path =~ m/~/;
21     $path;
22 }
23
24 __END__