-
Notifications
You must be signed in to change notification settings - Fork 109
/
Makefile.PL
52 lines (47 loc) · 1.7 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.76',
'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,
},
META_MERGE => {
no_index => {
directory => 'lib/mogdeps',
package => ['ProcessHandle', 'TrackerHandle', 'MogstoredHandle',
'MogPath', 'Mgd'],
},
resources => {
homepage => 'http://danga.com/mogilefs/',
bugtracker => 'http://rt.cpan.org/Public/Dist/Display.html?Name=mogilefs-server',
repository => 'http://code.sixapart.com/svn/mogilefs/',
MailingList => 'http://groups.google.com/group/mogile',
},
},
);