-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
29 lines (29 loc) · 1.05 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
# Note: this file was auto-generated by Module::Build::Compat version 0.3607
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'Git::Flux',
'VERSION_FROM' => 'lib/Git/Flux.pm',
'PREREQ_PM' => {
'File::Slurp' => 0,
'File::Temp' => 0,
'Git::Repository' => 0,
'List::MoreUtils' => 0,
'Term::ReadLine' => 0,
'Test::Fatal' => 0,
'Test::More' => 0,
'Test::TinyMocker' => 0,
'Try::Tiny' => 0,
'mixin' => 0
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [
'bin/git-flux'
],
'PL_FILES' => {},
'test' => {
'TESTS' => 't/*.t t/lib/*.t t/commands/*.t t/commands/feature/*.t t/commands/support/*.t'
}
)
;