Files
Config-General/Makefile.PL
Thomas von Dein 6131988cd8 Move from svn to github and various fixes:
-    fix rt.cpan.org#142095:IfDefine refined
-    fix rt.cpan.org#118746:clarify variable name chars
-    fix rt.cpan.org#139261: include dirs
-    fixed license to artistic_2
-    fix repo+version
2022-04-12 13:07:51 +02:00

31 lines
1.2 KiB
Perl

#
# Makefile.PL - build file for Config::General
#
# Copyright (c) 2000-2022 Thomas Linden <tom@daemon.de>.
# All Rights Reserved. Std. disclaimer applies.
# Licensed under the Artistic License 2.0.
#
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
},
'META_MERGE' => {
resources => {
repository => 'https://github.com/TLINDEN/Config-General'
},
},
($ExtUtils::MakeMaker::VERSION ge '6.31'?
('LICENSE' => 'artistic_2', ) : ()),
);