File: Makefile.PL

package info (click to toggle)
rt-authen-externalauth 0.10-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 440 kB
  • sloc: perl: 3,299; sh: 21; makefile: 17
file content (38 lines) | stat: -rwxr-xr-x 640 bytes parent folder | download
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
use inc::Module::Install;

RTx('RT-Authen-ExternalAuth');

license('GPL version 2');
author('Mike Peachey <zordrak@cpan.org>');

all_from('lib/RT/Authen/ExternalAuth.pm');
readme_from;

feature 'SSL LDAP Connections' =>
    -default => 0,
    recommends('Net::SSLeay' => 0),
    ;

feature 'External LDAP Sources' => 
    -default => 1,
    recommends('Net::LDAP' => 0),
    ;

feature 'External DBI Sources' =>
    -default => 1,
    recommends('DBI' => 0),
    ;

feature 'SSO Cookie Sources' => 
    -default => 1,
    recommends('CGI::Cookie' => 0),
    ;

author_tests('xt');

requires_rt('3.8.2');

&auto_install();

sign;
&WriteAll;