File: Makefile.PL

package info (click to toggle)
libparse-plainconfig-perl 3.07-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 360 kB
  • sloc: perl: 1,916; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 716 bytes parent folder | download
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
26
use ExtUtils::MakeMaker;
use 5.008003;

# Create the makefile
WriteMakefile(
    NAME         => 'Parse::PlainConfig',
    ABSTRACT     => 'Parser/Generator of human-readable conf files',
    AUTHOR       => 'Arthur Corliss <corliss@digitalmages.com>',
    VERSION_FROM => 'lib/Parse/PlainConfig.pm',
    PREREQ_PM    => {
        'Class::EHierarchy' => 2.00,
        'Paranoid'          => 2.10,
        'Text::ParseWords'  => 0,
        'Text::Tabs'        => 0,
        }, (
        $ExtUtils::MakeMaker::VERSION ge '6.30_00' ? ( LICENSE => 'perl', )
        : ()
        ), (
        $ExtUtils::MakeMaker::VERSION ge '6.48'
        ? ( MIN_PERL_VERSION => 5.008003 )
        : ()
        ),
        );

exit 0;