-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
38 lines (36 loc) · 1.07 KB
/
Makefile.PL
File metadata and controls
38 lines (36 loc) · 1.07 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
#!/usr/bin/env perl
use strict;
use warnings;
use 5.016;
use ExtUtils::MakeMaker::CPANfile;
WriteMakefile(
NAME => 'OptArgs2',
ABSTRACT => 'CLI argument and option processing',
AUTHOR => 'Mark Lawrence <nomad@null.net>',
VERSION => 'v0.0.0',
LICENSE => 'gpl_3',
test => { RECURSIVE_TEST_FILES => 1, },
META_MERGE => {
dynamic_config => 1,
'meta-spec' => { version => 2 },
no_index => {
package => [
qw/
OptArgs2::CODEREF
OptArgs2::Status
/
],
},
resources => {
bugtracker =>
{ web => 'https://github.com/mlawren/p5-OptArgs/issues', },
homepage => 'https://github.com/mlawren/p5-OptArgs',
repository => {
type => 'git',
url => 'ssh://git@github.com/mlawren/p5-OptArgs.git',
web => 'https//github.com/mlawren/p5-OptArgs',
}
},
release_status => 'testing',
},
);