File: Build.PL

package info (click to toggle)
libdata-hal-perl 1.001-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 220 kB
  • sloc: perl: 315; makefile: 2
file content (56 lines) | stat: -r--r--r-- 1,573 bytes parent folder | download | duplicates (2)
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
use Module::Build qw();
Module::Build->new(
    add_to_cleanup => [ 'Data-HAL-*' ],
    build_requires => {
        'Data::Visitor::Callback' => 0,
        'File::Slurp' => 0,
        'JSON' => 0,
        'Log::Any::Adapter' => 0,
        'Log::Any::Adapter::FileHandle' => 0,
        'strictures' => 0,
        'Test::Fatal' => 0,
        'Test::More' => 0,
    },
    configure_requires => {
        'Module::Build' => 0.40,
    },
    dist_version_from => 'lib/Data/HAL.pm',
    dynamic_config => 0,
    license => 'perl',
    meta-spec => {
        url => 'http://module-build.sourceforge.net/META-spec-v1.4.html',
        version => '1.4',
    },
    module_name => 'Data::HAL',
    no_index => {
        file => [
            'lib/Data/HAL/URI/NamespaceMap.pm',
        ],
    },
    requires => {
        'boolean' => 0,
        'Clone' => 0,
        'Data::Visitor::Callback' => 0,
        'failures' => 0,
        'HTTP::Headers::Util' => 0,
        'JSON' => 0,
        'Log::Any' => 0,
        'MIME::Type' => 0,
        'Moo' => 0,
        'perl' => '5.008',
        'Safe::Isa' => 0,
        'Scalar::Util' => 0,
        'strictures' => 0,
        'Types::Standard' => 0,
        'URI' => 0,
        'URI::IRI' => 0,
        'URI::NamespaceMap' => '<= 0.12',
        'URI::Template' => 0,
        'XML::RegExp' => 0,
    },
    resources => {
        license => 'http://dev.perl.org/licenses/',
        bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Data-HAL',
        repository => 'https://github.com/daxim/Data-HAL',
    },
)->create_build_script;