File: Makefile.PL

package info (click to toggle)
libfile-finder-perl 0.53-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: perl: 985; sh: 3; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
use 5.006;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME              => 'File::Finder',
    VERSION_FROM      => 'lib/File/Finder.pm', # finds $VERSION
    PREREQ_PM         => {
			  "Text::Glob" => 0,
			  "Test::More" => 0,
			 }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/File/Finder.pm', # retrieve abstract from module
       AUTHOR         => 'Randal L. Schwartz <merlyn@stonehenge.com>') : ()),
);