File: Makefile.PL

package info (click to toggle)
libnet-ldap-server-perl 0.43-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 116 kB
  • sloc: perl: 282; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (2)
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
use ExtUtils::MakeMaker;
use 5.006000;

WriteMakefile(
    'NAME'		=> 'Net::LDAP::Server',
    'ABSTRACT'	=> 'LDAP server side protocol handling',
    'AUTHOR'	=> 'Alessandro Ranellucci <aar@cpan.org>',
    'VERSION_FROM'	=> 'lib/Net/LDAP/Server.pm',
    'PMLIBDIRS'	=> [ 'lib' ],
    'PREREQ_PM'		=> {
    	Net::LDAP => 0,
    	Convert::ASN1 => 0
    },
    'dist'         	=> { COMPRESS => 'gzip', SUFFIX => 'gz' },
    'DISTNAME' => 'Net-LDAP-Server',
    'LICENSE' => 'perl',
    'test' => {
        'TESTS' => 't/*.t'
    },
    'META_MERGE' => {
        resources => {
            repository => 'git://git@github.com:alexrj/Net-LDAP-Server.git',
        },
    },
);