mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-17 04:31:00 +01:00
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
This commit is contained in:
43
Makefile.PL
43
Makefile.PL
@@ -1,31 +1,30 @@
|
||||
#
|
||||
# Makefile.PL - build file for Config::General
|
||||
#
|
||||
# Copyright (c) 2000-2014 Thomas Linden <tom@daemon.de>.
|
||||
# Copyright (c) 2000-2022 Thomas Linden <tom@daemon.de>.
|
||||
# All Rights Reserved. Std. disclaimer applies.
|
||||
# Artistic License, same as perl itself. Have fun.
|
||||
# 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 => 'http://dev.catalyst.perl.org/repos/Config-General/trunk/',
|
||||
},
|
||||
},
|
||||
($ExtUtils::MakeMaker::VERSION ge '6.31'?
|
||||
('LICENSE' => 'perl', ) : ()),
|
||||
);
|
||||
|
||||
'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', ) : ()),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user