File: Makefile.PL

package info (click to toggle)
libio-file-withfilename-perl 0.01-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 72 kB
  • sloc: perl: 20; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 407 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
use 5.010001;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME              => 'IO::File::WithFilename',
    VERSION_FROM      => 'lib/IO/File/WithFilename.pm',
    PREREQ_PM         => {
        'File::Temp' => '0.22',
        'IO::File'   => '1.14',
    },
    ($] >= 5.005 ?
      (ABSTRACT_FROM  => 'lib/IO/File/WithFilename.pm',
       AUTHOR         => 'Ivan Fomichev <ifomichev@cpan.org>') : ()),
);