File: Build.PL

package info (click to toggle)
libnet-stomp-perl 0.62-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 224 kB
  • sloc: perl: 1,311; makefile: 7
file content (28 lines) | stat: -rw-r--r-- 803 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
#!perl
use Module::Build;
use strict;
use warnings;

my $build = Module::Build->new(
    create_makefile_pl => 'traditional',
    license            => 'perl',
    module_name        => 'Net::Stomp',
    requires           => {
        'IO::Socket::INET'      => '0',
        'IO::Select'            => '0',
        'Class::Accessor::Fast' => '0',
        'Log::Any'              => '1.707',
    },
    test_requires      => {
        'Test::More'             => '0',
        'Test::Deep'             => '0',
        'Test::Fatal'            => '0',
        'Log::Any::Adapter::TAP' => '0.003003',
        'Test::NiceDump'         => '1.0.0',
    },
    recommends         => {
        'IO::Socket::IP'        => '0.20',
        'IO::Socket::SSL'       => '1.75',
    },
);
$build->create_build_script;