Image-Info-1.27.tar.gz
[Image-Info.git] / Makefile.PL
blob9124390db006f20fc7da66c9eced24c18ce9d9f4
1 #!/usr/bin/perl -w
3 use strict;
4 use File::Spec;
6 #############################################################################
8 # Load the Module::Install bundled in ./inc/
9 use inc::Module::Install;
11 # The name of your distribution
12 name 'Image-Info';
14 # Get most of the details from the primary module
15 all_from 'lib/Image/Info.pm';
17 requires 'IO::String' => '1.03' if $] < 5.008;
19 recommends 'Image::Xpm' => 1.0,
20 'Image::Xbm' => 1.0,
21 'XML::Simple' => 0;
23 test_requires 'Test::More' => '0.62';
25 license 'perl';
27 author 'Tels <nospam-abuse@bloodgate.com>',
28 'Gisle Aas';
30 # Do not index these
31 no_index directory => 'img', 'dev';
33 # Auto-install all dependencies from CPAN
34 auto_install;
36 # Generate the Makefile
37 WriteAll;