File: Makefile.PL

package info (click to toggle)
libregexp-optimizer-perl 0.23-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 181; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (3)
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
27
28
#
# $Id: Makefile.PL,v 0.20 2013/02/23 13:43:59 dankogai Exp $
#
use 5.008001;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME             => 'Regexp::Optimizer',
    AUTHOR           => q{Dan Kogai <dankogai+cpan@gmail.com>},
    VERSION_FROM     => 'lib/Regexp/Optimizer.pm',
    ABSTRACT_FROM    => 'lib/Regexp/Optimizer.pm',
    LICENSE          => 'Artistic_2_0',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.008001,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'Regexp::Assemble' =>  0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Regexp-Optimizer-*' },
);