forked from hachi/MogileFS-Utils
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Makefile.PL
28 lines (26 loc) · 1.04 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
#!/usr/bin/perl
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'MogileFS-Utils',
VERSION_FROM => 'lib/MogileFS/Utils.pm',
AUTHOR => 'Brad Fitzpatrick <[email protected]>',
ABSTRACT => 'MogileFS utilities',
EXE_FILES => ['mogtool', 'mogadm', 'mogstats',
'mogupload', 'mogfetch', 'mogdelete', 'mogfileinfo', 'moglistkeys',
'moglistfids', 'mogfiledebug', 'mogrename',
],
PREREQ_PM => {
'LWP::Simple' => 0,
'Compress::Zlib' => 0,
'MogileFS::Client' => '1.16',
},
META_MERGE => {
resources => {
homepage => 'http://www.mogilefs.org',
bugtracker => 'http://code.google.com/p/mogilefs/issues/list',
repository => 'git://github.com/mogilefs/MogileFS-Utils.git',
MailingList => 'http://groups.google.com/group/mogile',
},
},
);