2015-02-05 16:12:15 +01:00
|
|
|
#
|
|
|
|
|
# Makefile.PL - build file for Data::Interactive::Inspect
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2007-2014 T. v.Dein <tom |AT| cpan.org>.
|
|
|
|
|
# All Rights Reserved. Std. disclaimer applies.
|
|
|
|
|
# Artistic License, same as perl itself. Have fun.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
|
|
WriteMakefile(
|
|
|
|
|
NAME => 'Data::Interactive::Inspect',
|
|
|
|
|
VERSION_FROM => 'Inspect.pm',
|
|
|
|
|
ABSTRACT => 'Inspect and manipulate perl data structures interactively',
|
|
|
|
|
LICENSE => 'perl',
|
2015-02-08 15:01:09 +01:00
|
|
|
AUTHOR => 'Thomas v.Dein <tlinden@cpan.org>',
|
2015-02-05 16:12:15 +01:00
|
|
|
clean => { FILES => '*~ */*~' },
|
|
|
|
|
PREREQ_PM => {
|
|
|
|
|
'YAML' => 0,
|
|
|
|
|
'File::Temp' => 0,
|
|
|
|
|
'Term::ReadLine' => 0,
|
|
|
|
|
},
|
|
|
|
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
|
|
|
|
test => { TESTS => 't/*.t' },
|
|
|
|
|
'META_MERGE' => {
|
|
|
|
|
resources => {
|
2025-12-14 20:32:04 +01:00
|
|
|
repository => 'https://codeberg.org/scip/Data-Interactive-Inspect',
|
2015-02-05 16:12:15 +01:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|