File: Build.PL

package info (click to toggle)
libnet-address-ip-local-perl 0.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 116 kB
  • ctags: 14
  • sloc: perl: 82; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (4)
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
#
# Module::Build build script for Net::Address::IP::Local
#
# (C) 2005-2009 Julian Mehnle <julian@mehnle.net>
# $Id: Build.PL 24 2009-01-14 21:23:40Z julian $
#
###############################################################################

use Module::Build;

my $build = Module::Build->new(
    module_name     => 'Net::Address::IP::Local',
    dist_author     => 'Julian Mehnle <julian@mehnle.net>',
    license         => 'perl',
    requires        => {
        perl                => 0,
        version             => 0,
        Error               => 0,
        IO::Socket::INET    => 0
    },
    recommends      => {
        IO::Socket::INET6   => 0
    },
    create_makefile_pl
                    => 'passthrough',
    sign            => 1
);

$build->create_build_script();