File: Makefile.PL

package info (click to toggle)
libnet-ldap-perl 1%3A0.6500%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,660 kB
  • ctags: 731
  • sloc: perl: 15,059; sh: 76; makefile: 5
file content (78 lines) | stat: -rw-r--r-- 1,916 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- perl -*-

use inc::Module::Install;

perl_version    5.008001;

name		'perl-ldap';
module_name	'Net::LDAP';
abstract	'LDAP client library';
version_from	'lib/Net/LDAP.pm';
author		'Graham Barr <gbarr@cpan.org>';
license		'perl';

resources
	homepage    => 'http://ldap.perl.org/',
	repository  => 'https://github.com/perl-ldap/perl-ldap',
	bugtracker  => 'https://rt.cpan.org/Public/Dist/Display.html?Name=perl-ldap',
	MailingList => 'http://lists.cpan.org/showlist.cgi?name=perl-ldap',
	ListArchive => 'http://perl.markmail.org/search/list:perl-ldap';

check_nmake;	# check and download nmake.exe for Win32

requires	'MIME::Base64'	=> 0;	# core module since Perl 5.7.3
requires	'Convert::ASN1' => 0.20;

test_requires	'Test::More';
test_requires	'File::Basename';
test_requires	'File::Compare';
test_requires	'File::Path';
test_requires	'IO::File';
test_requires	'Text::Soundex';

features
        'IPv6 support' => [
		-default => 0,
                'IO::Socket::INET6' => 0,
        ],
	'LDAPS support' => [
		-default => 0,
		'IO::Socket::SSL' => 1.26,
	],
	'SASL authentication' => [
		-default => 0,
		'Authen::SASL'  => '2.00',
		recommends 'Digest::MD5',	# for DIGEST-MD5 SASL mech, core since Perl 5.7.3
		recommends 'Digest::HMAC_MD5',	# for CRAM-MD5 SASL mech
		recommends 'GSSAPI',		# for GSSAPI SASL mech
	],
	'LDAP URLs' => [
		-default => 0,
		'URI::ldap' => 1.10,
	],
	'Time conversion functions' => [
		-default => 0,
		'Time::Local' => 0,
	],
	'Read/Write DSML files' => [
		-default => 0,
		'XML::SAX::Writer' => 0,
		'XML::SAX::Base'   => 0,
	],
	'Extended URL support when reading LDIFs' => [
		-default => 0,
		'LWP' => 0,
	],
	'LWP support for the LDAP protocol family' => [
		-default => 0,
		'LWP::Protocol'   => 0,
		'LWP::MediaTypes' => 0,
		'HTTP::Negotiate' => 0,
		'HTTP::Response'  => 0,
		'HTTP::Status'    => 0,
		recommends 'JSON',
	];

auto_install_now;

WriteAll	sign => 1;