-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
33 lines (31 loc) · 897 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
29
30
31
32
33
use 5.008;
use strict;
use warnings;
use Module::Build;
Module::Build->VERSION('0.4004');
my $builder = Module::Build->new(
module_name => 'Term::Scroller',
license => 'perl_5',
dist_author => q{Cameron Tauxe <camerontauxe@gmail.com>},
dist_version_from => 'lib/Term/Scroller.pm',
release_status => 'stable',
configure_requires => {
'Module::Build' => '0.4004',
},
test_requires => {
'Test::More' => '0',
},
requires => {
'perl' => '5.020',
'IO::Pty' => '1.14',
'Term::ReadKey' => '2.38',
'Encode::Locale' => '1.05'
},
add_to_cleanup => [ 'Term-Scroller-*' ],
meta_merge => {
resources => {
repository => 'https://github.com/camtauxe/term-scroller.git'
}
}
);
$builder->create_build_script();