File: Makefile.PL

package info (click to toggle)
libfile-which-perl 0.05-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 104 kB
  • ctags: 6
  • sloc: perl: 108; makefile: 40; sh: 2
file content (13 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'		=> 'File::Which',
    'VERSION_FROM'	=> 'Which.pm', # finds $VERSION
    'PREREQ_PM'		=> {
                'File::Spec' => 0.60,     # The version coming with perl-5.005_03
      },
    'EXE_FILES' => ['bin/pwhich'],
      ($] >= 5.005 ?   
      (ABSTRACT_FROM => 'Which.pm', # retrieve abstract from module
       AUTHOR     => 'Per Einar Ellefsen <per.einar (at) skynet.be>') : ()),
);