Files
Config-General/Makefile.PL
Thomas von Dein e690b33942 => 2.52, see changelog
git-svn-id: http://dev.catalyst.perl.org/repos/Config-General/trunk@96 be1acefe-a474-0410-9a34-9b3221f2030f
2013-07-03 08:37:11 +00:00

27 lines
655 B
Perl

#
# Makefile.PL - build file for Config::General
#
# Copyright (c) 2000-2013 Thomas Linden <tom@daemon.de>.
# All Rights Reserved. Std. disclaimer applies.
# Artistic License, same as perl itself. Have fun.
#
use ExtUtils::MakeMaker;
WriteMakefile(
'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
},
($ExtUtils::MakeMaker::VERSION ge '6.31'?
('LICENSE' => 'perl', ) : ()),
);