File: Build.PL

package info (click to toggle)
libio-socket-inet6-perl 2.73-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: perl: 994; makefile: 5
file content (44 lines) | stat: -rw-r--r-- 1,167 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
use strict;
use warnings;

use lib "./inc";

use Test::Run::Builder;

my $build = Test::Run::Builder->new(
    'module_name'     => "IO::Socket::INET6",
    dist_version_from => 'lib/IO/Socket/INET6.pm',
    dist_abstract     =>
        '[ DEPRECATED!! ] Object interface for AF_INET/AF_INET6 domain sockets',
    'requires' => {
        'Carp'       => 0,
        'Errno'      => 0,
        'Exporter'   => 0,
        'IO::Socket' => 0,
        'Socket'     => 0,
        'Socket6'    => "0.12",
        'perl'       => '5.008',
        '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://github.com/shlomif/perl-io-socket-inet6",
        },
        keywords => [
            "deprecated", "inet6",   "input",      "internet",
            "ipv6",       "network", "networking", "output",
            "socket",     "sockets",
        ],
    },
);

$build->create_build_script;