forked from trmjoa/Module-Build-PIT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
30 lines (28 loc) · 853 Bytes
/
Build.PL
File metadata and controls
30 lines (28 loc) · 853 Bytes
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
use 5.006;
use strict;
use warnings FATAL => 'all';
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Module::Build::PIT',
license => 'restrictive',
dist_author => q{Joakim Tørmoen <joakim.tormoen@evry.com>},
dist_version_from => 'lib/Module/Build/PIT.pm',
dist_abstract => 'An extension to Module::Build for handling Post-Install tests',
release_status => 'stable',
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Warn' => 0,
'File::Copy::Recursive' => 0
},
requires => {
'version' => 0,
},
verbose => 1,
tests => 't',
add_to_cleanup => [ 'Module-Build-PIT-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();