-
Notifications
You must be signed in to change notification settings - Fork 4
/
Build.PL
32 lines (31 loc) · 947 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
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Games::PangZero',
all_from => 'lib/Games/PangZero.pm',
dist_abstract => 'a fast-paced action game about popping balloons with a harpoon',
dist_author => [
'UPi <upi@sourceforge.net>',
'SAdam <sadam@apocalypse.rulez.org>',
'DaniGM <danigm@gmail.com>',
'Elio Blanca <eblanca76@users.sourceforge.net>',
],
license => 'gpl',
requires => {
'File::ShareDir' => '0',
'File::Spec' => '0',
'Time::HiRes' => '0',
'SDL' => '2.536',
},
configure_requires => {
'Module::Build' => '0.38',
},
meta_merge => {
resources => {
bugtracker => 'http://github.com/kthakore/pangzero/issues',
repository => 'http://github.com/kthakore/pangzero'
}
},
share_dir => 'data',
)->create_build_script();