-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
48 lines (47 loc) · 1.26 KB
/
Makefile.PL
File metadata and controls
48 lines (47 loc) · 1.26 KB
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
39
40
41
42
43
44
45
46
47
48
use 5.006;
use strict;
use warnings FATAL => 'all';
use Config;
use File::Spec;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Debug::Filter::PrintExpr',
AUTHOR => q{Jörg Sommrey <git@sommrey.de>},
VERSION_FROM => 'lib/Debug/Filter/PrintExpr.pm',
ABSTRACT_FROM => 'lib/Debug/Filter/PrintExpr.pm',
LICENSE => 'Perl_5',
PL_FILES => {},
MIN_PERL_VERSION => 5.010,
#XS => {'PrintExpr.xs' => 'PrintExpr.c'},
#OBJECT => 'PrintExpr$(OBJ_EXT)',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Test2::V0' => 0,
},
PREREQ_PM => {
'Exporter::Tiny' => 0.025,
'Filter::Simple' => 0.76,
'Data::Dumper' => 0,
'Scalar::Util' => 1.26,
'List::Util' => 1.29,
'B' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Debug-Filter-PrintExpr-*' },
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
bugtracker => {
web => 'https://github.com/jo-37/debug-filter-printexpr/issues',
},
repository => {
type => 'git',
url => 'git://github.com/jo-37/debug-filter-printexpr.git',
web => 'https://github.com/jo-37/debug-filter-printexpr',
},
},
},
);