File: Build.PL

package info (click to toggle)
libcache-perl 2.11-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 432 kB
  • ctags: 301
  • sloc: perl: 2,577; makefile: 2
file content (61 lines) | stat: -rw-r--r-- 1,501 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use strict;
use warnings;

use lib "./inc";
use Devel::AssertOS qw(Unix);

use Test::Run::Builder;

my $builder = Test::Run::Builder->new(
    module_name         => 'Cache',
    license             => 'perl',
    dist_author         => 'Chris Leishman <chris@leishman.org>',
    dist_version_from   => 'lib/Cache.pm',
    dist_abstract       => "Provide a generic Cache mechanism.",
    requires =>
    {
        'DB_File'			=> '1.72',
        'Date::Parse'		=> '2.24',
        'Digest::SHA'		=> '0',
        'Fcntl'			=> '1.03',
        'File::Find'		=> '0',
        'File::NFSLock'		=> '1.20',
        'File::Path'		=> '1.00',
        'File::Spec'		=> '0.8',
        'Heap::Fibonacci'		=> '0.01',
        'IO::File'		=> '1.08',
        'IO::Handle'		=> '1.21',
        'IO::String'		=> '1.02',
        'Storable'		=> '1.00',
        'Symbol'			=> '1.02',
        'Test::More'		=> '0.45',
        'perl'              => '5.006',
    },
    configure_requires =>
    {
        'Module::Build' => 0,
    },
    add_to_cleanup      => [ 'Cache-*' ],
    meta_merge =>
    {
        resources =>
        {
            repository => "http://bitbucket.org/shlomif/web-cpan",
        },
        keywords =>
        [
            'cache',
            'caching',
            'file',
            'generic',
            'memory',
            'optimisation',
            'optimise',
            'optimization',
            'optimize',
            'speed',
        ],
    },
);

$builder->create_build_script();