1use 5.00503;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    'NAME'		=> 'Authen::Captcha',
7    'VERSION_FROM'	=> 'Captcha.pm', # finds $VERSION
8    'PREREQ_PM'		=> {
9	                    'File::Spec'	=> '0.8',
10	                    'File::Basename'	=> 0,
11	                    'String::Random'	=> 0,
12	                    'GD'	=> 0,
13	                   },
14    ($] >= 5.008 ?    ## Add these new keywords supported since 5.005
15      (ABSTRACT_FROM => 'Captcha.pm', # retrieve abstract from module
16       AUTHOR     => 'Seth T. Jackson <sjackson@purifieddata.net>',
17       META_MERGE => {
18                      'meta-spec' => { version => 2 },
19                      resources => {
20                                    repository => {
21					           type => 'git',
22					           url => 'https://github.com/lkundrak/perl-Authen-Captcha.git',
23					           web => 'https://github.com/lkundrak/perl-Authen-Captcha',
24                                                  },
25                                   },
26                     }) : ())
27);
28