summaryrefslogtreecommitdiffstatsabout
path: root/Makefile.PL
blob: 2f0ffed2e3ed24accc8ed00abd2eea1d857a534e (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::Authen::LDAP',
    AUTHOR              => 'Edward Rudd <urkle@outoforder.cc>',
    VERSION_FROM        => 'lib/DJabberd/Authen/LDAP.pm',
    ABSTRACT_FROM       => 'lib/DJabberd/Authen/LDAP.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'DJabberd' => 0.83,
        'Net::LDAP' => 0.34
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'DJabberd-Authen-LDAP-*' },
);