-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
29 lines (29 loc) · 889 Bytes
/
Makefile.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
use 5.028001;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Game::MarbleRun',
VERSION_FROM => 'lib/Game/MarbleRun.pm',
PREREQ_PM => {
'Getopt::Long' => 0,
'DBD::SQLite' => 0,
'Digest::MD5' => 0,
'List::Util' => 0,
'Locale::Maketext' => 0,
'Locale::Maketext::Simple' => 0,
'Locale::Maketext::Lexicon' => 0,
'SVG' => 0,
# for testing
'Capture::Tiny' => 0,
'Test::More' => 0,
},
ABSTRACT_FROM => 'lib/Game/MarbleRun.pm',
EXE_FILES => [qw(
script/gravi
script/make_gravi_po_file
)],
dist => {COMPRESS => 'gzip -f', SUFFIX => 'gz', },
AUTHOR => 'Wolfgang Friebel <[email protected]>',
LICENSE => 'perl',
);