summaryrefslogtreecommitdiff
path: root/Build.PL
blob: a4c8d702abffafcece954e6d0fe70dc5b922c23b (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/usr/bin/perl
#
# Build script for the docknot application.
#
# Copyright 2013, 2016, 2018-2021 Russ Allbery <rra@cpan.org>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#
# SPDX-License-Identifier: MIT

use 5.024;
use autodie;
use warnings;

use Module::Build;

# Basic package configuration.
#<<<
my $build = Module::Build->new(
    dist_abstract        => 'Package documentation generator',
    dist_author          => 'Russ Allbery <rra@cpan.org>',
    license              => 'mit',
    module_name          => 'App::DocKnot',
    recursive_test_files => 1,
    add_to_cleanup       => [qw(MANIFEST.bak cover_db)],

    # Module static data files.
    share_dir => { module => { 'App::DocKnot' => 'share' } },

    # Add additional package metadata.
    meta_merge => {
        'meta-spec' => { version => '2' },
        resources   => {
            bugtracker => {
                web => 'https://github.com/rra/docknot/issues',
            },
            homepage   => 'https://www.eyrie.org/~eagle/software/docknot',
            repository => {
                url  => 'https://github.com/rra/docknot.git',
                web  => 'https://github.com/rra/docknot',
                type => 'git',
            },
        },
    },

    # Other package relationships.
    configure_requires => { 'Module::Build' => 0.4004 },
    requires           => {
        'Date::Parse'            => 0,
        'File::BaseDir'          => 0,
        'File::ShareDir'         => 0,
        'Git::Repository'        => 0,
        'Image::Size'            => 0,
        'IO::Uncompress::Gunzip' => 0,
        'IO::Compress::Xz'       => 0,
        'IPC::Run'               => 0,
        'IPC::System::Simple'    => 0,
        'JSON::MaybeXS'          => 0,
        'Kwalify'                => 0,
        'List::SomeUtils'        => '0.07',
        'Path::Iterator::Rule'   => 0,
        'Path::Tiny'             => '0.101',
        'Perl6::Slurp'           => 0,
        'Pod::Thread'            => '3.01',
        'Template'               => 0,
        'YAML::XS'               => '0.81',
        perl                     => '5.024',
    },
    test_requires => {
        'Capture::Tiny'         => 0,
        'File::Copy::Recursive' => 0,
    },
);
#>>>

# Generate the build script.
$build->create_build_script;