DoctorKarma/Makefile.PL

15 lines
357 B
Makefile
Raw Normal View History

2022-02-04 20:43:32 +01:00
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DoctorAgustin',
VERSION => '0.1',
INST_SCRIPT => './bin',
INST_BIN => './bin',
test => { TESTS => 't/*.t' },
PREREQ_PM => {
'Term::ReadLine::Gnu' => 0,
2022-02-04 21:44:00 +01:00
'Test::Most' => 0,
'Test::MockModule' => 0,
'Test::MockObject' => 0,
2022-02-04 20:43:32 +01:00
},
);