2009-10-10 16:31:34 +00:00
|
|
|
#
|
|
|
|
|
# Makefile.PL - build file for Config::General
|
|
|
|
|
#
|
2022-04-12 13:07:51 +02:00
|
|
|
# Copyright (c) 2000-2022 Thomas Linden <tom@daemon.de>.
|
2009-10-10 16:31:34 +00:00
|
|
|
# All Rights Reserved. Std. disclaimer applies.
|
2022-04-12 13:07:51 +02:00
|
|
|
# Licensed under the Artistic License 2.0.
|
2009-10-10 16:31:34 +00:00
|
|
|
#
|
|
|
|
|
|
2009-10-10 16:07:21 +00:00
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
|
|
WriteMakefile(
|
2022-04-12 13:07:51 +02: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
|
|
|
|
|
},
|
|
|
|
|
'META_MERGE' => {
|
|
|
|
|
resources => {
|
2025-12-09 21:30:19 +01:00
|
|
|
repository => 'https://codeberg.org/scip/Config-General'
|
2022-04-12 13:07:51 +02:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
($ExtUtils::MakeMaker::VERSION ge '6.31'?
|
|
|
|
|
('LICENSE' => 'artistic_2', ) : ()),
|
|
|
|
|
);
|