cualsea/cualsea-cli/Makefile.PL
2021-11-11 22:47:04 +01:00

14 lines
315 B
Perl

use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Cualsea::Cli',
VERSION => '0.1',
INST_SCRIPT => './bin',
INST_BIN => './bin',
test => { TESTS => 't/*.t' },
test => { TESTS => 't/*/*.t' },
PREREQ_PM => {
'Getopt::Long::Descriptive' => 0,
}
);