Added correct PATH and SBOX_REDIRECT_IGNORE and PERL5LIB envs in rules for libpar...
[pkg-perl] / deb-src / libtest-differences-perl / libtest-differences-perl-0.47 / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4     NAME          => "Test::Differences",
5     VERSION_FROM  => "Differences.pm",
6     PREREQ_PM     => {
7         "Text::Diff" => 0.34,
8     },
9 );
10
11
12 sub MY::libscan {
13    package MY ;
14    my $self = shift ;
15    my ( $path ) = @_ ;
16    return '' if /\.sw[a-z]$/ ;
17    return '' unless length $self->SUPER::libscan( $path ) ;
18    return $path ;
19 }