File: Makefile.PL

package info (click to toggle)
libmodule-versions-report-perl 1.06-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 62; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# This -*- perl -*- script writes the Makefile for Module::Versions::Report
# Time-stamp: "2003-06-21 23:27:37 AHDT"
require 5.004;
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
   NAME          => 'Module-Versions-Report',
   VERSION_FROM  => 'lib/Module/Versions/Report.pm',
   LICENSE       => 'perl',
   ABSTRACT      => 'report versions of all modules in memory',
   'dist'        => { COMPRESS => 'gzip -6f', SUFFIX => 'gz', },
);

package MY;

sub libscan
{ # Determine things that should *not* be installed
    my($self, $path) = @_;
    return '' if $path =~ m/~/;
    $path;
}

__END__