-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBuild.PL
More file actions
35 lines (32 loc) · 839 Bytes
/
Copy pathBuild.PL
File metadata and controls
35 lines (32 loc) · 839 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
31
32
33
34
# release instructions:
# bump version manually
# perl Build.PL
# Build manifest
# Build distcheck
# Build dist
use Module::Build;
Module::Build->new(
module_name => 'Test::Regression',
license => 'perl',
requires => {
'Test::More' => 0,
'Test::Differences' => 0,
'Text::Diff' => 0,
'Algorithm::Diff' => 0,
'FileHandle' => 0
},
build_requires => {
'Test::MockObject' => 0,
'DirHandle' => 0,
'File::Spec' => 0
},
configure_requires => { 'Module::Build' => 0.42 },
meta_merge => {
resources=> {
repository => 'http://github.com/periapt/test-regression',
},
keywords => ['Test','Regression'],
},
create_makefile_pl => 'traditional',
dist_author => 'Nicholas Bamber <nicholas@periapt.co.uk>',
)->create_build_script;