-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.PL
85 lines (84 loc) · 2.73 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'GlusterFS::GFAPI::FFI',
DISTNAME => 'GlusterFS-GFAPI-FFI',
AUTHOR => 'Ji-Hyeon Gim <[email protected]>',
VERSION_FROM => 'lib/GlusterFS/GFAPI/FFI.pm',
ABSTRACT_FROM => 'lib/GlusterFS/GFAPI/FFI.pm',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
PREREQ_PM => {
'utf8' => 0,
'strict' => 0,
'warnings' => 0,
'overload' => 0,
'Fcntl' => 0,
'POSIX' => 0,
'Carp' => 0,
'Try::Tiny' => 0,
'File::Spec' => 0,
'Scalar::Util::Numeric' => 0,
'List::MoreUtils' => 0,
'Moo' => 0,
'Generator::Object' => 0,
'Sub::Exporter' => 0,
'FFI::Platypus' => 0,
'FFI::Platypus::Declare' => 0,
'FFI::Platypus::Buffer' => 0,
'FFI::Platypus::Memory' => 0,
},
TEST_REQUIRES => {
'utf8' => 0,
'locale' => 0,
'POSIX' => 0,
'Symbol' => 0,
'Data::Dumper' => 0,
'Devel::Peek' => 0,
'IPC::Open3' => 0,
'IO::Select' => 0,
'List::Util' => 0,
'Scalar::Util' => 0,
'Time::HiRes' => 0,
'Test::Deep' => 0,
'Test::More' => 0,
'Test::Most' => 0,
'Test::Class' => 0,
},
PL_FILES => {},
clean => {
FILES => 'GlusterFS-GFAPI-FFI-*',
},
test => {
TESTS => 't/*.t',
},
(
eval { ExtUtils::MakeMaker->VERSION(6.46) }
? (
META_MERGE => {
'meta-spec' => { version => 2 },
license => ['gpl_2', 'lgpl_3_0'],
resources => {
homepage => 'https://github.com/gluster/libgfapi-perl',
repository => {
type => 'git',
url => 'https://github.com/gluster/libgfapi-perl.git',
web => 'https://github.com/gluster/libgfapi-perl',
},
bugtracker => {
web => 'https://github.com/gluster/libgfapi-perl/issues',
},
},
x_contributors => [
'Tae-Hwa Lee <[email protected]>'
],
}
)
: ()
),
);