File: Makefile_PL_settings.plx

package info (click to toggle)
libkeyword-simple-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 116 kB
  • sloc: perl: 128; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (2)
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;

return {
    NAME   => 'Keyword::Simple',
    AUTHOR => q{Lukas Mai <l.mai@web.de>},

    MIN_PERL_VERSION => '5.12.0',
    CONFIGURE_REQUIRES => {},
    BUILD_REQUIRES => {},
    TEST_REQUIRES => {
        'strict'     => 0,
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'Carp'                 => 0,
        'XSLoader'             => 0,
        'warnings'             => 0,
    },
    DEVELOP_REQUIRES => {
        'Test::Pod' => 1.22,
    },

    depend => { Makefile => '$(VERSION_FROM)' },

    REPOSITORY => [ github => 'mauke' ],
};