File: Build.PL

package info (click to toggle)
libnet-upnp-perl 1.4.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 344 kB
  • sloc: perl: 2,099; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Net::UPnP',
    license             => 'bsd',
    dist_author         => 'Satoshi Konno <skonno@cybergarage.org>',
    dist_version_from   => 'lib/Net/UPnP.pm',
    abstract_from_from  => 'lib/Net/UPnP.pm',
    requires => {
        'Test::More' => 0,
        'version'    => 0,
    },
    add_to_cleanup      => [ 'Net-UPnP-*' ],
);

$builder->create_build_script();