File: Build.PL

package info (click to toggle)
libnetapp-perl 1.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 384 kB
  • ctags: 226
  • sloc: perl: 4,539; makefile: 15
file content (24 lines) | stat: -rw-r--r-- 638 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         	=> 'NetApp',
    license             	=> 'perl',
    dist_author         	=> 'Phillip Moore <pmoore6448@gmail.com>',
    dist_version_from   	=> 'lib/NetApp.pm',
    requires => {
        'IPC::Cmd'		=> 0,
        'Class::Std'		=> 0,
        'Params::Validate'	=> 0,
        'Regexp::Common'      	=> 0,
        'Memoize'		=> 0,
        'Net::Telnet'		=> 0,
        'Clone'			=> 0,
        'Test::Exception'	=> 0,
    },
    add_to_cleanup      	=> [ 'NetApp-*' ],
    recursive_test_files	=> 1,
);

$builder->create_build_script();