forked from hachi/MogileFS-Server
-
Notifications
You must be signed in to change notification settings - Fork 99
/
Makefile.PL
52 lines (47 loc) · 1.72 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
#!/usr/bin/perl
#
# Perl Makefile for MogileFS
# $Id$
#
# Invoke with 'perl Makefile.PL'
#
# See ExtUtils::MakeMaker (3) for more information on how to influence
# the contents of the Makefile that is written
#
use ExtUtils::MakeMaker;
my $exefiles = ["mogstored", "mogilefsd", "mogdbsetup", "mogautomount"];
$exefiles = ["mogstored"] if exists $ENV{DANGABUILD_MOGSTOREDONLY};
$exefiles = ["mogilefsd"] if exists $ENV{DANGABUILD_MOGILEFSDONLY};
WriteMakefile(
NAME => 'MogileFS::Server',
VERSION_FROM => 'lib/MogileFS/Server.pm',
AUTHOR => 'Brad Fitzpatrick <[email protected]>',
ABSTRACT_FROM => 'lib/MogileFS/Server.pm',
EXE_FILES => $exefiles,
PREREQ_PM => {
'Danga::Socket' => '1.56',
'Perlbal' => '1.79',
'Sys::Syslog' => 0,
'Sys::Syscall' => '0.22',
'Getopt::Long' => 0,
'Symbol' => 0,
'Net::Netmask' => 0,
fields => 0,
'IO::AIO' => 0,
'MogileFS::Client' => 0,
DBI => 0,
'Test::More' => 0.88, # 0.88 for done_testing() support
},
META_MERGE => {
no_index => {
package => ['ProcessHandle', 'TrackerHandle', 'MogstoredHandle',
'MogPath', 'Mgd'],
},
resources => {
homepage => 'http://www.mogilefs.org',
bugtracker => 'http://code.google.com/p/mogilefs/issues/list',
repository => 'git://github.com/mogilefs/MogileFS-Server.git',
MailingList => 'http://groups.google.com/group/mogile',
},
},
);