-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMakefile.PL
More file actions
21 lines (19 loc) · 749 Bytes
/
Makefile.PL
File metadata and controls
21 lines (19 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use ExtUtils::MakeMaker;
unless (eval { require Test::More; 1 }) {
print STDERR "*** Test::More is not installed, you will not be able to run the tests\n";
}
unless ($] >= 5.006001) {
print STDERR "*** This Perl version ($]) is not supported\n";
}
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Tirex',
'AUTHOR' => 'Jochen Topf',
'LICENSE' => 'GPL',
'INSTALLDIRS' => 'vendor',
'VERSION_FROM' => 'lib/Tirex.pm', # finds $VERSION
'ABSTRACT' => "Modules for the Tirex tile server",
'PREREQ_PM' => { 'IPC::ShareLite' => 0, 'JSON' => 0 },
test => { TESTS => join(' ', glob('t/*/*.t')) },
);