-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
33 lines (31 loc) · 936 Bytes
/
Copy pathBuild.PL
File metadata and controls
33 lines (31 loc) · 936 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
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Term::ReadLine::Repl',
license => 'perl',
dist_author => 'John R. <johnlradford23@gmail.com>',
requires => {
'perl' => '5.010',
'Data::Dumper' => 0,
'JSON' => 0,
'Term::ANSIColor' => 0,
'Term::ReadLine' => 0,
'Carp' => 0,
},
build_requires => {
'Module::Build' => 0,
'Test::Exception' => 0,
},
resources => {
repository => {
type => 'git',
url => 'https://github.com/BlueSquare23/Term-ReadLine-Repl',
web => 'https://github.com/BlueSquare23/Term-ReadLine-Repl',
},
bugtracker => {
web => 'https://github.com/BlueSquare23/Term-ReadLine-Repl/issues',
},
},
);
$build->create_build_script();