File: Makefile.PL

package info (click to toggle)
libpod-plainer-perl 1.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 80 kB
  • sloc: perl: 45; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use 5.006;
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Pod::Plainer',
    VERSION_FROM  => 'Plainer.pm',
    ABSTRACT_FROM => 'Plainer.pm',
    AUTHOR        => 'Robin Barker <rmbarker@cpan.org>',

    INSTALLDIRS   => ($] < 5.011 ? 'perl' : 'site'),
    LICENSE       => 'perl',
    MIN_PERL_VERSION => '5.6.0',
    PREREQ_PM     => { 'Pod::Parser' => 0 },
);