-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBuild.PL
More file actions
47 lines (35 loc) · 1.28 KB
/
Build.PL
File metadata and controls
47 lines (35 loc) · 1.28 KB
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
use Module::Build;
use warnings FATAL => qw(all);
use strict;
require v5.20 ;
# check that pod docs are up-to-date. This is redundant with the work done by
# dzil, but enables re-building the docs downstream.
# Use $^X in there as requested in
# https://rt.cpan.org/Public/Bug/Display.html?id=74891
my $class = Module::Build->subclass(
class => "Module::Build::Custom",
code => <<'SUBCLASS' );
sub ACTION_build {
my $self = shift;
# below requires Config::Model 2.062
system ($^X, qw!-I lib -MConfig::Model::Utils::GenClassPod -e gen_class_pod();!) == 0
or die "gen-class-pod failed: $?";
$self->SUPER::ACTION_build;
}
SUBCLASS
my @version_info = @ARGV ? ( dist_version => $ARGV[0] ) : ();
my %appli_files = map { ( $_, $_ ) } glob("lib/Config/Model/*.d/*");
my $build = $class->new(
module_name => 'Config::Model',
@version_info,
license => 'lgpl',
appli_files => \%appli_files,
dist_abstract => 'Describe, edit and validate configuration data',
dist_author => 'Dominique Dumont (ddumont at cpan dot org)',
##{ $plugin->get_prereqs ##}
add_to_cleanup => [ qw/wr_root wr_root_p/ ],
);
$build->add_build_element('pl');
$build->add_build_element('conf');
$build->add_build_element('appli');
$build->create_build_script;