summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: b90d45dfe9859eea199f5805ed05aa1ac11dbc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'LDAPShell',
    'VERSION_FROM'	=> 'LDAPShell.pm', # finds $VERSION
    'PREREQ_PM'		=> {
			    Net::LDAP=>0,
			    Net::LDAP::LDIF=>0,
			    Term::ReadLine::Gnu=>0,
			    Term::ReadLine=>0,
			    Term::ANSIColor=>0,
			    Getopt::Long=>0,
			    URI=>0,
			    Text::FormatTable=>0,
			    Unicode::String=>0,
			    ResourcePool=>0,
			    ResourcePool::Factory::Net::LDAP=>0
			   },
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'LDAPShell.pm', # retrieve abstract from module
       AUTHOR     => 'A. U. Thor <a.u.thor@a.galaxy.far.far.away>') : ()),
);