Files
dbmdeep/Makefile.PL

34 lines
1.1 KiB
Makefile
Raw Normal View History

2015-02-05 16:14:12 +01:00
#
# Makefile.PL - build file for DBM::Tree::Manager
#
2015-10-27 10:57:14 +01:00
# Copyright (c) 2007-2015 T. v.Dein <tom |AT| cpan.org>.
2015-02-05 16:14:12 +01:00
# All Rights Reserved. Std. disclaimer applies.
# Artistic License, same as perl itself. Have fun.
#
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DBM::Deep::Manager',
VERSION_FROM => 'Manager.pm',
'EXE_FILES' => [ 'bin/dbmdeep' ],
ABSTRACT => 'Maintain DBM::Deep databases interactively',
LICENSE => 'perl',
2015-10-27 10:57:14 +01:00
AUTHOR => 'Thomas v.Dein <tlinden@cpan.org>',
2015-02-05 16:14:12 +01:00
clean => { FILES => '*~ */*~' },
PREREQ_PM => {
'DBM::Deep' => 2.0,
'YAML' => 0,
'Data::Interactive::Inspect' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
test => { TESTS => 't/*.t' },
'META_MERGE' => {
resources => {
repository => 'https://github.com/TLINDEN/dbmdeep',
},
},
);