-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
33 lines (30 loc) · 941 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
ABSTRACT => "collection of perl helpers for implementing code owner specific gitlab ci steps.",
AUTHOR => "wicliff wolda <wicliff.wolda\@gmail.com>",
NAME => 'GPH',
VERSION_FROM => 'lib/GPH.pm',
LICENSE => 'perl',
PREREQ_PM => {
"File::Basename" => 0,
"Time::Piece" => 0,
"XML::LibXML" => 0,
"Cwd" => 0,
"File::Find::Rule" => 0,
},
CONFIGURE_REQUIRES => {
"ExtUtils::MakeMaker" => 0
},
TEST_REQUIRES => {
"Test2::V0" => 0,
"Test2::Tools::Spec" => 0,
"Data::Dumper" => 0,
"Readonly" => 0,
"File::Temp" => 0,
},
'test' => {
TESTS => 't/unit/GPH/*.t t/unit/GPH/*/*.t t/functional/*.t'
}
);