File: Makefile.PL

package info (click to toggle)
libregexp-grammars-perl 1.058-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,328 kB
  • sloc: perl: 53,328; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 589 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Regexp-Grammars-*' },
);