File: Build.PL

package info (click to toggle)
cipux-storage 3.4.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 368 kB
  • ctags: 37
  • sloc: perl: 1,578; makefile: 41
file content (45 lines) | stat: -rw-r--r-- 1,238 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
use strict;
use warnings;
use Module::Build::CipUX;

my $builder = Module::Build::CipUX->new(
    module_name       => 'CipUX::Storage',
    license           => 'gpl',
    dist_author       => 'Christian Kuelker <christian.kuelker@cipworx.org>',
    dist_version_from => 'lib/CipUX/Storage.pm',

    #    create_makefile_pl => 'traditional',
    #    create_readme      => 1,
    installdirs => 'vendor',

    meta_merge => { resources => { homepage => q(http://www.cipux.org), }, },

    recommends => {
        'Test::Perl::Critic'  => 0,
        'Test::Pod::Coverage' => '1.04',
    },

    build_requires => {
        'Module::Build::CipUX' => '0.3.0',
        'Test::More'           => 0,
        'Test::Pod'            => '1.14',
        'Test::Refcount'       => 0,
        'Test::LeakTrace'      => 0,
    },
    requires => {
        'Carp'          => 0,
        'Class::Std'    => '0.0.9',
        'CipUX'         => '3.4.0.5',
        'Data::Dumper'  => 0,
        'Getopt::Long'  => 0,
        'Log::Log4perl' => 0,
        'Net::LDAP'     => 0,
        'Pod::Usage'    => 0,
        'Readonly'      => 0,
        'version'       => 0,
    },

    add_to_cleanup => ['CipUX-Storage-*'],
);

$builder->create_build_script();