File: Build.PL

package info (click to toggle)
liblchown-perl 1.01-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 15; makefile: 2
file content (18 lines) | stat: -r--r--r-- 441 bytes parent folder | download | duplicates (4)
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 => 'Lchown',
    dist_author => 'Nick Cleaton <nick@cleaton.net>',
    all_from    => 'lib/Lchown.pm',
    license     => 'perl',
    build_requires => {
        'ExtUtils::CBuilder' => 0,
        'Test::More'         => 0,
    },
    add_to_cleanup     => [ 'Lchown-*' ],
    create_makefile_pl => 'small',
);

$builder->create_build_script();