mirror of
https://codeberg.org/scip/Config-General.git
synced 2025-12-17 04:31:00 +01:00
- oh my goodness! For some unknown reason I deleted the Makefile.PL before packaging. Dammit. So, here it is again. git-svn-id: http://dev.catalyst.perl.org/repos/Config-General/trunk@62 be1acefe-a474-0410-9a34-9b3221f2030f
25 lines
580 B
Perl
25 lines
580 B
Perl
#
|
|
# Makefile.PL - build file for Config::General
|
|
#
|
|
# Copyright (c) 2000-2007 Thomas Linden <tom@daemon.de>.
|
|
# All Rights Reserved. Std. disclaimer applies.
|
|
# Artificial 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
|
|
}
|
|
);
|
|
|