2009-10-10 16:31:34 +00:00
|
|
|
#
|
|
|
|
|
# Makefile.PL - build file for Config::General
|
|
|
|
|
#
|
2014-04-30 12:17:56 +00:00
|
|
|
# Copyright (c) 2000-2014 Thomas Linden <tom@daemon.de>.
|
2009-10-10 16:31:34 +00:00
|
|
|
# All Rights Reserved. Std. disclaimer applies.
|
2010-04-09 09:07:16 +00:00
|
|
|
# Artistic License, same as perl itself. Have fun.
|
2009-10-10 16:31:34 +00:00
|
|
|
#
|
|
|
|
|
|
2009-10-10 16:07:21 +00:00
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
|
|
WriteMakefile(
|
2009-10-10 16:42:12 +00:00
|
|
|
'NAME' => 'Config::General',
|
|
|
|
|
'VERSION_FROM' => 'General.pm',
|
|
|
|
|
'clean' => {
|
|
|
|
|
FILES => 't/*.out t/test.cfg *~ */*~'
|
|
|
|
|
},
|
|
|
|
|
'PREREQ_PM' => {
|
|
|
|
|
'IO::File' => 0,
|
|
|
|
|
'FileHandle' => 0,
|
|
|
|
|
'File::Spec::Functions' => 0,
|
|
|
|
|
'File::Glob' => 0
|
2009-10-10 16:45:27 +00:00
|
|
|
},
|
2013-07-04 05:27:53 +00:00
|
|
|
'META_MERGE' => {
|
|
|
|
|
resources => {
|
|
|
|
|
repository => 'http://dev.catalyst.perl.org/repos/Config-General/trunk/',
|
|
|
|
|
},
|
|
|
|
|
},
|
2009-10-10 16:45:27 +00:00
|
|
|
($ExtUtils::MakeMaker::VERSION ge '6.31'?
|
|
|
|
|
('LICENSE' => 'perl', ) : ()),
|
2009-10-10 16:07:21 +00:00
|
|
|
);
|
2009-10-10 16:38:28 +00:00
|
|
|
|