~ubuntu-branches/ubuntu/dapper/libconfig-auto-perl/dapper

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
use ExtUtils::MakeMaker;

use strict;
use Getopt::Std;
use Data::Dumper;
my $opts = {};
getopts( 'x', $opts );

my $have_xml_simple = eval { require XML::Simple; 1; };

if( !$have_xml_simple and !$opts->{'x'} ) {
    warn qq[Since the 0.04 release, XML::Simple is an optional prerequisite.\n].
         qq[If you'd like to install Config::Auto with XML support, please\n] .
         qq[rerun this Makefile.PL with the '-x' option\n];
}

my $prereqs = {
    'XML::Simple'       => 0,
    'Config::IniFiles'  => 0,
};
delete $prereqs->{'XML::Simple'} unless $opts->{'x'};             

WriteMakefile(
    'NAME'		        => 'Config::Auto',
    'VERSION_FROM'	    => 'lib/Config/Auto.pm', # finds $VERSION
    'PREREQ_PM'		    => $prereqs, 
    ( $] >= 5.005 
        ? ( ABSTRACT_FROM    => 'lib/Config/Auto.pm', # retrieve abstract from module
            AUTHOR           => 'Jos I. Boumans <kane@cpan.org>') 
        : ()
    ),
);