File: Build.PL

package info (click to toggle)
libweb-mrest-cli-perl 0.284-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 148 kB
  • sloc: perl: 358; makefile: 13
file content (59 lines) | stat: -rw-r--r-- 1,598 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 5.012000;
use strict;
use warnings FATAL => 'all';
use Module::Build;

my $builder = Module::Build->new(
    module_name          => 'Web::MREST::CLI',
    license              => 'bsd',
    dist_author          => q{Nathan Cutler <ncutler@suse.cz>},
    dist_version_from    => 'lib/Web/MREST/CLI.pm',
    create_license       => 0,
    create_readme        => 0,
    release_status       => 'stable',
    share_dir            => {
        dist => [ 'config' ],
    },
    meta_merge => {
        no_index => {
            directory => [
                "config"
            ]
        }
    },
    script_files         => [
        'bin/mrest-cli',
    ],
    configure_requires => {
        'Module::Build'  => 0,
    },
    build_requires => {
        'File::Basename' => 0,
        'File::HomeDir'  => 0,
    },
    requires => {
        'perl'           => 5.012,
        'App::CELL'      => 0.205,
        'Data::Dumper'   => 0,
        'Encode'         => 0,
        'File::HomeDir'  => 0,
        'File::ShareDir' => 0,
        'Getopt::Long'   => 2.32,
        'HTTP::Request::Common'  => 0,
        'JSON'           => 0,
        'Log::Any::Adapter' => 0,
        'LWP::UserAgent' => 6.05,
        'LWP::Protocol::https' => 6.04,
        'Params::Validate' => 0,
        'Pod::Usage'     => 0,
        'Term::ReadLine' => 0,
        'Test::Deep'     => 0,
        'Try::Tiny'      => 0,
        'URI::Escape'    => 0,
    },
    add_to_cleanup     => [ 'Web-MREST-CLI-*' ],
#    create_makefile_pl => 'traditional',
    recursive_test_files => 1,
);

$builder->create_build_script();