forked from watashi/perl-archive-rgssad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
33 lines (31 loc) · 962 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.010;
use strict;
use warnings FATAL => 'all';
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Archive::Rgssad',
license => 'perl',
dist_author => q{Zejun Wu <[email protected]>},
dist_abstract =>
'Provide an interface to RGSS (ruby game scripting system) archive files.',
dist_version_from => 'lib/Archive/Rgssad.pm',
release_status => 'stable',
script_files => qw{script/rgssad},
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
'IO::String' => 0,
},
requires => {
'perl' => 5.010,
'File::Basename' => 0,
'File::Path' => 0,
'Getopt::Long' => 0,
'IO::File' => 0
},
add_to_cleanup => [ 'Archive-Rgssad-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();