File: Build.PL

package info (click to toggle)
libtap-harness-junit-perl 0.42-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 856 kB
  • sloc: xml: 10,187; perl: 413; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 792 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
use strict;
use warnings;

use Module::Build;

my $build = Module::Build->new(
	module_name	=> 'TAP::Harness::JUnit',
	license		=> 'perl',
	dist_author	=> 'Lubomir Rintel (GoodData) <lubo.rintel@gooddata.com>',
	dist_version_from => 'lib/TAP/Harness/JUnit.pm',
	meta_merge     => {
		resources => {
			bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=TAP-Harness-JUnit',
			repository => 'https://github.com/jlavallee/tap-harness-junit',
		}
	},
	requires	=> {
		'TAP::Harness'	=> 3.05,
		'File::Temp'	=> 0,
		'TAP::Parser'	=> 0,
		'XML::Simple'	=> 0,
		'Scalar::Util'	=> 0,
		'Test::More'	=> 0,
        'Time::HiRes'	=> 0,
		'Encode'	    => 0,
	},
	build_requires => {
		'Test::Deep'	=> 0,
	},
	configure_requires => {
	    'Module::Build' => 0.42
	}
);

$build->create_build_script;