File: Build.PL

package info (click to toggle)
libtest-tap-htmlmatrix-perl 0.09-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 168 kB
  • ctags: 50
  • sloc: perl: 539; makefile: 40
file content (28 lines) | stat: -rw-r--r-- 476 bytes parent folder | download
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
#!/usr/bin/perl -w

use strict;

use Module::Build;

my $b = Module::Build->new(
	module_name => 'Test::TAP::HTMLMatrix',
	license => 'perl',
	requires => {
		'perl'				=> '>= 5.008',
		'Test::TAP::Model'	=> '>= 0.08',
		'Petal'				=> 0,
		'Petal::Utils'		=> 0,
		'URI::file'			=> 0,
	},
	build_requires => {
		'Test::More' => 0,
	},
	create_makefile_pl => 'traditional',
	sign => 1,
);

$b->add_build_element("html");
$b->add_build_element("css");

$b->create_build_script;