-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.PL
28 lines (26 loc) · 917 Bytes
/
Build.PL
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
use 5.010_001;
use strict;
use warnings FATAL => 'all';
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Loctools::Markdown',
license => 'MIT',
dist_author => 'Igor Afanasyev <[email protected]>',
dist_version_from => 'lib/Loctools/Markdown.pm',
release_status => 'testing',
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'File::Copy::Recursive' => 0,
'Test::More' => '0.94',
'Text::Diff' => 0,
},
requires => {
'perl' => '5.10.0',
'JSON' => 0,
},
add_to_cleanup => ['Loctools-*', 'Makefile.PL', 'MYMETA.*', 'META.*', 'MANIFEST.bak', 'MANIFEST'],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();