File: Build.PL

package info (click to toggle)
libxml-commonns-perl 0.06-6
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 116 kB
  • sloc: perl: 67; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (6)
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         => 'XML::CommonNS',
    license             => 'perl',
    dist_author         => 'Chris Prather <perigrin@cpan.org>',
    dist_version_from   => 'lib/XML/CommonNS.pm',
    requires => {
		'XML::NamespaceFactory'	=> 0,
        'Test::More' => 0,
        'version'    => 0,
    },
    add_to_cleanup      => [ 'XML-CommonNS-*' ],
);

$builder->create_build_script();