-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
38 lines (37 loc) · 975 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
30
31
32
33
34
35
36
37
38
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Struct::Path',
AUTHOR => 'Michael Samoglyadov <mixas@cpan.org>',
VERSION_FROM => 'lib/Struct/Path.pm',
ABSTRACT_FROM => 'lib/Struct/Path.pm',
LICENSE => 'Perl_5',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Storable' => 2.01,
'Test::More' => 0,
},
META_MERGE => {
resources => {
repository => 'https://github.com/mr-mixas/Struct-Path.pm',
},
},
PREREQ_PM => {
'B::Deparse' => 0,
'Carp' => 0,
'parent' => 0,
'strict' => 0,
'warnings' => 0,
},
dist => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
},
clean => { FILES => 'Struct-Path-* cover_db' },
);