summaryrefslogtreecommitdiffstatsabout
path: root/Makefile.PL
blob: 38343aedb48abb5ae78563c01b70d3fbcaf2f201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'DJabberd::Plugin::VCard::LDAP',
    AUTHOR              => 'Edward Rudd <urkle@outoforder.cc>',
    VERSION_FROM        => 'lib/DJabberd/Plugin/VCard/LDAP.pm',
    ABSTRACT_FROM       => 'lib/DJabberd/Plugin/VCard/LDAP.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'DJabberd' => '0.83',
        'DJabberd::Plugin::VCard' => 0,
        'Net::LDAP' => 0,
    },
    DISTNAME		=> 'DJabberd-VCard-LDAP',
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
);