-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
36 lines (35 loc) · 1.12 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
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use ExtUtils::MakeMaker::CPANfile;
WriteMakefile(
NAME => 'Sys::Cmd',
ABSTRACT_FROM => 'lib/Sys/Cmd.pm',
AUTHOR => 'Mark Lawrence <[email protected]>',
VERSION_FROM => 'lib/Sys/Cmd.pm',
LICENSE => 'gpl_3',
test => { RECURSIVE_TEST_FILES => 1, },
PM_FILTER => 'class-inline-filter', #CIFILTER#
dist => { PREOP => 'class-inline-filter $(DISTVNAME)' }, #CIFILTER#
META_MERGE => {
'meta-spec' => { version => 2 },
no_index => {
package => [
qw/
Sys::Cmd::Mo
/
],
},
resources => {
bugtracker =>
{ web => 'https//github.com/mlawren/p5-Sys-Cmd/issues', },
homepage => 'https//github.com/mlawren/p5-Sys-Cmd',
repository => {
type => 'git',
url => 'ssh://[email protected]/mlawren/p5-Sys-Cmd.git',
web => 'https//github.com/mlawren/p5-Sys-Cmd',
}
},
},
);