blob: ce0d4927a2bf1f81960f02dcbebeb26cfb750298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DJabberd::Plugin::EntityTime',
AUTHOR => 'Edward Rudd <urkle@outoforder.cc>',
VERSION_FROM => 'lib/DJabberd/Plugin/EntityTime.pm',
ABSTRACT_FROM => 'lib/DJabberd/Plugin/EntityTime.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'DJabberd' => 0.83,
},
DISTNAME => 'DJabberd-EntityTime',
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DJabberd-Plugin-EntityTime-*' },
);
|