File: Build.PL

package info (click to toggle)
libio-socket-inet6-perl 2.69-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 192 kB
  • sloc: perl: 972; makefile: 5
file content (52 lines) | stat: -rw-r--r-- 1,011 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
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
use strict;
use warnings;

use lib "./inc";

use Test::Run::Builder;

my $build = Test::Run::Builder->new(
    'module_name' => "IO::Socket::INET6",
    'requires' => 
    {
        'Carp' => 0,
        'Errno' => 0,
        'Exporter' => 0,
        'IO::Socket' => 0,
        'Socket' => 0,
        'Socket6' => "0.12",
        'strict' => 0,
        'warnings' => 0,
    },
    build_requires =>
    {
        'Test::More' => 0,
    },
    configure_requires =>
    {
        'Module::Build' => '0.36',
    },
    'license' => "perl",
    create_makefile_pl => 'traditional',
    meta_merge =>
    {
        resources =>
        {
            repository => "https://bitbucket.org/shlomif/perl-io-socket-inet6",
        },
        keywords =>
        [
            "inet6",
            "input",
            "internet",
            "ipv6",
            "network",
            "networking",
            "output",
            "socket",
            "sockets",
        ],
    },
    
);
$build->create_build_script;