-
Notifications
You must be signed in to change notification settings - Fork 4
/
Build.PL
34 lines (31 loc) · 975 Bytes
/
Build.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
#!/usr/bin/perl
use strict;
use Module::Build;
Module::Build->new(
'module_name' => 'MogileFS::Client::Fuse',
'create_makefile_pl' => 'traditional',
'dist_abstract' => 'Fuse binding for MogileFS',
'dist_author' => 'Daniel Frett <[email protected]>',
'license' => 'bsd',
'meta_merge' => {
'resources' => {
'license' => 'http://www.opensource.org/licenses/BSD-3-Clause',
'repository' => 'https://github.com/frett/MogileFS-Fuse',
},
},
'configure_requires' => {
'Module::Build' => '0.36',
},
'build_requires' => {
'Test::More' => 0,
},
'requires' => {
'Config::IniFiles' => 0,
'Fuse' => '0.11',
'MogileFS::Client::FilePaths' => 0,
'MRO::Compat' => 0,
'Params::Validate' => 0,
'Scalar::Util' => 0,
'threads::shared' => '1.21',
},
)->create_build_script();