-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
61 lines (60 loc) · 1.77 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use 5.022;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::Pfind',
AUTHOR => q{Mathias Kende <mathias@cpan.org>},
VERSION_FROM => 'lib/App/Pfind.pm',
ABSTRACT => 'A Perl based find replacement',
LICENSE => 'mit',
EXE_FILES => ['script/pfind'],
MIN_PERL_VERSION => '5.022',
MAN3PODS => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
BUILD_REQUIRES => {
},
PREREQ_PM => {
'Data::Dumper' => 0,
'Fcntl' => 0,
'File::Copy' => 0,
'File::Find' => 0,
'File::Spec::Functions' => 0,
'File::Path' => 0,
'Getopt::Long' => 0,
'Pod::Usage' => 0,
'Safe' => 0,
},
NO_MYMETA => 1,
META_MERGE => {
'meta-spec' => { version => 2 },
# Goes with NO_MYMETA (which would provide the dynamic config).
dynamic_config => 0,
no_index => {
# Ignores child of App::Pfind, but not App::Pfind itself. That package
# must be indexable otherwise PAUSE will not process the distribution.
namespace => [ 'App::Pfind' ],
},
prereqs => {
test => {
suggests => {
'Test::Pod' => 1.22,
},
},
},
resources => {
repository => {
type => 'git',
url => 'git@github.com:mkende/pfind.git',
web => 'https://github.com/mkende/pfind',
},
bugtracker => {
web => 'https://github.com/mkende/pfind/issues',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'App-Pfind-*' },
);