mirror of
https://codeberg.org/scip/dbmdeep.git
synced 2025-12-17 20:51:02 +01:00
initial commit
This commit is contained in:
35
Makefile.PL
Normal file
35
Makefile.PL
Normal file
@@ -0,0 +1,35 @@
|
||||
#
|
||||
# Makefile.PL - build file for DBM::Tree::Manager
|
||||
#
|
||||
# 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 => 'DBM::Deep::Manager',
|
||||
VERSION_FROM => 'Manager.pm',
|
||||
'EXE_FILES' => [ 'bin/dbmdeep' ],
|
||||
ABSTRACT => 'Maintain DBM::Deep databases interactively',
|
||||
LICENSE => 'perl',
|
||||
AUTHOR => [
|
||||
'Thomas v.Dein <tlinden@cpan.org>',
|
||||
],
|
||||
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',
|
||||
},
|
||||
},
|
||||
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user