forked from gluster/libgfapi-perl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
69 lines (68 loc) · 1.97 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
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',
LICENSE => 'perl',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
'FFI::CheckLib' => 0,
'FFI::Platypus' => 0,
},
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
PREREQ_PM => {
'Carp' => 0,
'FFI::Platypus' => 0,
'FFI::Platypus::Buffer' => 0,
'FFI::Platypus::Memory' => 0,
'Try::Tiny' => 0,
'strict' => 0,
'warnings' => 0,
'threads' => 0,
},
TEST_REQUIRES => {
'Symbol' => 0,
'IPC::Open3' => 0,
'IO::Select' => 0,
'List::Util' => 0,
'POSIX' => 0,
'Scalar::Util' => 0,
'Test::Deep' => 0,
'Test::More' => 0,
'Time::HiRes' => 0,
'locale' => 0,
'utf8' => 0,
'Data::Dumper' => 0,
'Devel::Peek' => 0,
},
EXE_FILES => [],
dist => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
},
clean => {
FILES => 'GlusterFS-GFAPI-FFI-*',
},
test => {
'TESTS' => "t/*.t",
},
(
eval { ExtUtils::MakeMaker->VERSION(6.46) }
? (
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
type => 'git',
url => 'https://github.com/potatogim/libgfapi-perl.git',
web => 'https://github.com/potatogim/libgfapi-perl',
},
})
: ()
),
);