File: Makefile_PL_settings.plx

package info (click to toggle)
liburl-search-perl 0.000005-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 100 kB
  • sloc: perl: 197; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 494 bytes parent folder | download
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
use strict;
use warnings;

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

    MIN_PERL_VERSION => '5.10.0',
    CONFIGURE_REQUIRES => {},
    BUILD_REQUIRES => {},
    TEST_REQUIRES => {
        'utf8'       => 0,
        'Test::More' => 0,
    },
    PREREQ_PM => {
        'strict'   => 0,
        'warnings' => 0,
        'Exporter' => 5.57,
    },
    DEVELOP_REQUIRES => {
        'Test::Pod' => 1.22,
    },

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