File: Makefile.PL

package info (click to toggle)
libmojolicious-plugin-renderfile-perl 0.12-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 70; makefile: 8
file content (18 lines) | stat: -rwxr-xr-x 540 bytes parent folder | download | duplicates (3)
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             => 'Mojolicious::Plugin::RenderFile',
    VERSION_FROM     => 'lib/Mojolicious/Plugin/RenderFile.pm',
    AUTHOR           => 'Viktor Turskyi <koorchik@cpan.org>',
    MIN_PERL_VERSION => 5.010,
    PREREQ_PM        => { 'Mojolicious' => '5.78' },
    META_MERGE       => {
        resources => {
            repository => 'https://github.com/koorchik/Mojolicious-Plugin-RenderFile',
        },
    },
    test             => { TESTS => 't/*.t' },
);