forked from nothingmuch/kiokudb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
79 lines (62 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
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/perl -w
use strict;
use ExtUtils::MakeMaker;
require 5.008; # utf8 and what not
WriteMakefile(
NAME => 'KiokuDB',
VERSION_FROM => 'lib/KiokuDB.pm',
INSTALLDIRS => 'site',
SIGN => 1,
PL_FILES => { },
EXE_FILES => [ grep { /\w$/ } glob("bin/*") ],
PREREQ_PM => {
'Moose' => 0.74,
'MooseX::Role::Parameterized' => 0.02,
'Class::MOP' => 0.81,
#'MooseX::AttributeHelpers' => '0.14',
'MooseX::Clone' => 0.04,
'MooseX::Types::Path::Class' => 0,
'Path::Class' => 0,
# Command line utilities
'MooseX::Getopt' => 0,
'App::Cmd' => 0.202,
'MooseX::App::Cmd' => 0,
# configure
'MooseX::YAML' => 0.02,
# misc dev shit
'Scalar::Util' => 0,
#'Devel::PartialDump' => '0.06',
'namespace::clean' => '0.08',
# Identity is important
( eval { require Data::UUID::LibUUID }
? ( "Data::UUID::LibUUID" => 0 )
: ( "Data::UUID" => 0 ) ),
# visits are also important
'Data::Visitor' => '0.24',
'Tie::ToObject' => 0,
'Task::Weaken' => 0,
# scanning and searching
'Data::Stream::Bulk' => "0.03",
# live objects
'Hash::Util::FieldHash::Compat' => 0,
( eval { require Hash::Util::FieldHash } ? () : (
# for 5.8 we need some specific versions of fieldhash deps
'Tie::RefHash::Weak' => '0.09',
'Variable::Magic' => '0.24',
)),
'Scope::Guard' => 0,
'Set::Object' => '1.26',
'Module::Pluggable::Object' => 0,
'Test::use::ok' => 0,
'Test::Exception' => 0,
'Test::More' => 0,
'Search::GIN' => 0.03,
'JSON' => 2.12,
'JSON::XS' => 2.231,
'YAML::XS' => 0.30,
'Storable' => 0,
'IO' => 1.23,
# used in command line tools
'Proc::InvokeEditor' => 1,
},
);