File: Build.PL

package info (click to toggle)
libhtml-template-pluggable-perl 0.17-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 264 kB
  • ctags: 16
  • sloc: perl: 369; sh: 28; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 655 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'HTML::Template::Plugin::Dot::Helpers',
    license             => 'perl',
    dist_author         => 'Rhesa Rozendaal <rhesa@cpan.org>',
    dist_version_from   => 'lib/HTML/Template/Plugin/Dot/Helpers.pm',
    requires => {
        'Test::More'				  => 0,
		'HTML::Template::Plugin::Dot' => 0.96,
		'HTML::Template::Pluggable'   => 0.12,
		'Number::Format'			  => 0,
    },
    add_to_cleanup      => [ 'HTML-Template-Plugin-Dot-Helpers-*' ],
	create_makefile_pl  => 'traditional',
	create_readme       => 1,
);

$builder->create_build_script();