File: Makefile.PL

package info (click to toggle)
libcatalyst-plugin-captcha-perl 0.04-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 72 kB
  • sloc: perl: 53; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 586 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'Catalyst::Plugin::Captcha',
    VERSION_FROM      => 'lib/Catalyst/Plugin/Captcha.pm',
    PREREQ_PM         => {
        'GD::SecurityImage' => 0,
        'Catalyst' => 5.30,
        'Catalyst::Plugin::Session' => 0,
        'HTTP::Date' => 0
    },
    ($] >= 5.005 ?
      (ABSTRACT_FROM  => 'lib/Catalyst/Plugin/Captcha.pm',
       AUTHOR         => 'Masahiro Nagano <kazeburo@nomadscafe.jp>') : ()),
);