mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-16 20:21:01 +01:00
git-svn-id: http://dev.catalyst.perl.org/repos/Config-General/trunk@79 be1acefe-a474-0410-9a34-9b3221f2030f
27 lines
655 B
Perl
27 lines
655 B
Perl
#
|
|
# Makefile.PL - build file for Config::General
|
|
#
|
|
# Copyright (c) 2000-2010 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', ) : ()),
|
|
);
|
|
|