File: Build.PL

package info (click to toggle)
libapp-cell-perl 0.231-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 412 kB
  • sloc: perl: 2,303; makefile: 2
file content (54 lines) | stat: -r--r--r-- 1,637 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
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
#!/usr/bin/perl
use 5.012000; # CPAN Testers
use strict;
use warnings;
use Module::Build;

my $build = Module::Build->new(
    module_name        => 'App::CELL',
    dist_author        => q{Smithfarm <presnypreklad@gmail.com>},
    dist_version_from  => 'lib/App/CELL.pm',
    license            => 'bsd',
    create_license     => 0,
    create_readme      => 0,
    share_dir          => { 
        dist => [ 'config' ], 
    },
    configure_requires => {
        'File::ShareDir::Install' => 0.11,
        'Module::Build'      => 0,
        'Software::License'  => 0,
    },
    build_requires     => { 
        'Log::Any::Test'     => 0,
        'File::ShareDir::Install' => 0.11,
        'File::Spec'         => 0,
        'File::Temp'         => 0,
        'Params::Validate'   => 0,
        'Test::More'         => 0,
        'Test::Output'       => 0,
        'Test::Warnings'     => 0,
        'Try::Tiny'          => 0,
    },
    requires           => {
        'perl'                  => 5.012,
        'Date::Format'          => 0,
        'File::HomeDir'         => 0,
        'File::ShareDir'        => 1.0,
        'File::Next'            => 0,
        'Log::Any'              => 0,
        'Log::Any::Adapter'     => 0.10,
        'Params::Validate'      => 0,
        'Try::Tiny'             => 0,
    },
    meta_merge => {
        resources => {
            repository => 'https://github.com/smithfarm/cell',
            bugtracker => 'https://github.com/smithfarm/cell/issues',
        }
    },
    add_to_cleanup     => [ 'App-CELL-*' ],
    # create_makefile_pl => 'traditional',
);

$build->create_build_script;