File: Build.PL

package info (click to toggle)
libtemplate-stash-autoescaping-perl 0.0303-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: perl: 491; makefile: 7
file content (59 lines) | stat: -r--r--r-- 1,290 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use strict;
use warnings;

use lib './inc';

use Test::Run::Builder;

my $mb = Test::Run::Builder->new(
    module_name => 'Template::Stash::AutoEscaping',
    license => 'perl',
    dist_author => q{Shlomi Fish <shlomif@cpan.org>},
    dist_version_from => 'lib/Template/Stash/AutoEscaping.pm',
    requires =>
    {
        'Class::Data::Inheritable' => 0,
        'Data::Dumper' => 0,
        'Template' => 0,
        'Template::Config' => 0,
        'Template::Exception' => 0,
        'UNIVERSAL::require' => 0,
        'base' => 0,
        'overload' => 0,
        'parent' => 0,
        'perl' => '5.012',
        'strict' => 0,
        'warnings' => 0,
    },
    build_requires =>
    {
        'Test::More' => 0,
        'URI' => 0,
        'Test::Base' => 0,
    },
    configure_requires =>
    {
        'Module::Build' => 0.36,
    },
    meta_merge =>
    {
        resources =>
        {
            repository => "http://github.com/shlomif/Template-Stash-AutoEscaping",
        },
        keywords =>
        [
            'autoescape',
            'autoescaping',
            'escape',
            'injection',
            'security',
            'stash',
            'template',
            'toolkit',
            'xss',
        ],
    },
);

$mb->create_build_script();