File: Build.PL

package info (click to toggle)
liblog-agent-rotate-perl 1.201-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: perl: 825; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,285 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!./perl
###########################################################################
#
#   Build.PL
#
#   Copyright (C) 2015 Mark Rogaski (mrogaski@cpan.org);
#   all rights reserved.
#
#   See the README file included with the
#   distribution for license information.
#
##########################################################################

use 5.006;
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Log::Agent::Rotate',
    license             => 'artistic_2',
    dist_author         => q{Mark Rogaski <mrogaski@cpan.org>},
    dist_version_from   => 'lib/Log/Agent/Rotate.pm',
    license             => 'artistic_2',
    release_status      => 'stable',
    configure_requires => {
        'Module::Build' => 0,
        'Test::More'        => '0',
        'File::Copy'        => '0',
		'Compress::Zlib'    => '0.4',
		'Getargs::Long'     => '0.103',
		'LockFile::Simple'  => '0.202',
		'Log::Agent'        => '0.201',
    },
    requires => {
		'Compress::Zlib'    => '0.4',
		'Getargs::Long'     => '0.103',
		'LockFile::Simple'  => '0.202',
		'Log::Agent'        => '0.201',
    },
    add_to_cleanup     => [ 'Log-Agent-Rotate-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();