diff options
author | Edward Rudd | 2010-02-15 12:30:44 -0500 |
---|---|---|
committer | Edward Rudd | 2010-02-15 12:30:44 -0500 |
commit | b935c431024f0eb5eac13c8ebf60feefd0367048 (patch) | |
tree | 6a21fba48d16419923e499e0ba78386f5306b7f9 /Makefile.PL |
import version 0.020.02
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..ce0d492 --- /dev/null +++ b/Makefile.PL | |||
@@ -0,0 +1,18 @@ | |||
1 | use strict; | ||
2 | use warnings; | ||
3 | use ExtUtils::MakeMaker; | ||
4 | |||
5 | WriteMakefile( | ||
6 | NAME => 'DJabberd::Plugin::EntityTime', | ||
7 | AUTHOR => 'Edward Rudd <urkle@outoforder.cc>', | ||
8 | VERSION_FROM => 'lib/DJabberd/Plugin/EntityTime.pm', | ||
9 | ABSTRACT_FROM => 'lib/DJabberd/Plugin/EntityTime.pm', | ||
10 | PL_FILES => {}, | ||
11 | PREREQ_PM => { | ||
12 | 'Test::More' => 0, | ||
13 | 'DJabberd' => 0.83, | ||
14 | }, | ||
15 | DISTNAME => 'DJabberd-EntityTime', | ||
16 | dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, | ||
17 | clean => { FILES => 'DJabberd-Plugin-EntityTime-*' }, | ||
18 | ); | ||