File: Makefile.PL

package info (click to toggle)
libreverseproxy-formfiller-perl 0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: perl: 157; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 885 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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'ReverseProxy::FormFiller',
    AUTHOR              => q{FX Deltombe <fxdeltombe@gmail.com>},
    VERSION_FROM        => 'lib/ReverseProxy/FormFiller.pm',
    ABSTRACT_FROM       => 'lib/ReverseProxy/FormFiller.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Apache2::Filter'      => 0,
        'Apache2::Const'       => 0,
        'Apache2::RequestUtil' => 0,
        'Apache2::RequestRec'  => 0,
        'Apache2::Response'    => 0,
        'Apache2::Log'         => 0,
        'URI::Escape'          => 0,

    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'ReverseProxy-FormFiller-*' },
);