File: Makefile.PL

package info (click to toggle)
libregexp-grammars-perl 1.036-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,228 kB
  • ctags: 89
  • sloc: perl: 53,272; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 638 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Regexp::Grammars',
    AUTHOR              => 'Damian Conway <DCONWAY@CPAN.org>',
    LICENSE             => 'perl',
    VERSION_FROM        => 'lib/Regexp/Grammars.pm',
    ABSTRACT_FROM       => 'lib/Regexp/Grammars.pm',
    PL_FILES            => {},
    PREREQ_PM           => {
        'Test::More'    => 0,
        'version'       => 0,
        ($] >= 5.018 ? ( 'Lexical::Var' => 0.007 ) : ())
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Regexp-Grammars-*' },
);